2021年6月15日

并发控制

摘要: 1.为students表添加 read 锁使用另一个账号登录数据库修改students表查看其特性 lock tables students read; update students set ClassID=1 where StuID=1; <可以看到另一个账号在修改内容时因读锁的特性虽然可以读取 阅读全文

posted @ 2021-06-15 16:47 1251618589 阅读(9) 评论(0) 推荐(0) 编辑

索引优化

摘要: 1.查看表的索引情况 show index from students\G; 2.创建索引index_name:索引名students(name):为students表的name这一列创建索引。 create index index_name on students(name); 3.使用索引查询数 阅读全文

posted @ 2021-06-15 15:15 1251618589 阅读(1) 评论(0) 推荐(0) 编辑

导航