select * from a where id in (select id from b) 等价于: for select id from b for select 8 from a where a.id = b.id 当b表数据必须小于a表数据时,in优于exists select * from Read More
索引失效: 全值匹配:索引全部引用 最佳左前缀法则,查询从索引的最左前列开始并且不跳过中间索引 索引列上少计算或类型转换 范围之后全失效 尽量使用覆盖索引,查询字段和 ,避免使用 select * 使用 !=或<>会导致无法使用索引,进行全表查询 is null 或 is not null 无法使用 Read More