> For the complete documentation index, see [llms.txt](https://lxs-shmily.gitbook.io/java-notes/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://lxs-shmily.gitbook.io/java-notes/shu-ju-ku/sql-you-hua.md).

# SQL 优化

* 前导模糊不能命中索引
* 负向查询不能命中索引
* 最左前缀原则
* 数据库字段不明显的不建议创建索引
* 字段的默认值不要设置为null
* 在字段上进行计算不能命中索引
* 不要让数据库帮我们作强制类型转换
* select 语句 使用明确的字段，不要使用 \*
* 如果明确只有一条数据返回，限制字段limit 1&#x20;
* 如果需要join，两表的字段类型应该相同。
