摘要:
1.为students表添加 read 锁使用另一个账号登录数据库修改students表查看其特性 lock tables students read; update students set ClassID=1 where StuID=1; <可以看到另一个账号在修改内容时因读锁的特性虽然可以读取 阅读全文
摘要:
1.查看表的索引情况 show index from students\G; 2.创建索引index_name:索引名students(name):为students表的name这一列创建索引。 create index index_name on students(name); 3.使用索引查询数 阅读全文