关于SQL优化的小知识

负向查询不命中索引 不命中数据库 select account from user where id not in (1,2,3); 复制代码 命中工具 select account from user where id in (4,5,6); 复制代码 前置模糊查询不命中索引 不命中post select account from user where name like '%lufei' 复制
相关文章
相关标签/搜索