摘要:
覆盖索引: 索引中有多个字段, 在where和select都有这些字段, 也就是说, 你想要得到的字段在索引中 测试: 表结构 表中数据只有5行 mysql> desc aa;+ + + + + + +| Field | Type | Null | Key | Default | Extra |+ 阅读全文
摘要:
查询 '产品的名字和公司的名字' 从产品表左连接公司表,再左连接用户表,product->company->user① 有where条件:用户名是‘sdf’mysql> explain select product.name pname,company.name cname from product left join company using(cid) left join user using(cid) where user.name = 'sdf' \G*************************** 1. r... 阅读全文