常用SQL语句优化技巧总结【经典】

作者:FrankYou 时间:2024-01-20 19:27:03 

本文实例总结了常用SQL语句优化技巧。分享给大家供大家参考,具体如下:

除了建立索引之外,保持良好的SQL语句编写习惯将会降低SQL性能问题发生。

①通过变量的方式来设置参数

好:


stringsql = "select * from people p where p.id = ? ";

坏:


stringsql = "select * from people p where p.id = "+id;

数据库的SQL文解析和执行计划会保存在缓存中,但是SQL文只要有变化,就得重新解析。

“…where p.id = ”+id的方式在id值发生改变时需要重新解析,这会耗费时间。

②不要使用select *

好:


stringsql = "select people_name,pepole_age from people ";

坏:


stringsql = "select * from people ";

使用select *的话会增加解析的时间,另外会把不需要的数据也给查询出来,数据传输也是耗费时间的,

比如text类型的字段通常用来保存一些内容比较繁杂的东西,如果使用select *则会把该字段也查询出来。

③谨慎使用模糊查询

好:


stringsql = "select * from people p where p.id like 'parm1%' ";

坏:


stringsql = "select * from people p where p.id like '%parm1%' ";

当模糊匹配以%开头时,该列索引将失效,若不以%开头,该列索引有效。

④不要使用列号

好:


stringsql = "select people_name,pepole_age from people order by name,age";

坏:


stringsql = "select people_name,pepole_age from people order by 6,8";

使用列号的话,将会增加不必要的解析时间。

⑤优先使用UNION ALL,避免使用UNION

好:


stringsql = "select name from student union all select name from teacher";

坏:


stringsql = "select name from student union select name from teacher";

UNION 因为会将各查询子集的记录做比较,故比起UNION ALL ,通常速度都会慢上许多。一般来说,如果使用UNION ALL能满足要求的话,务必使用UNION ALL。还有一种情况,如果业务上能够确保不会出现重复记录。

⑥在where语句或者order by语句中避免对索引字段进行计算操作

好:


stringsql = "select people_name,pepole_age from people where create_date=date1 ";

坏:


stringsql = "select people_name,pepole_age from people where trunc(create_date)=date1";

当在索引列上进行操作之后,索引将会失效。正确做法应该是将值计算好再传入进来。

⑦使用not exist代替not in

好:


stringsql = "select * from orders where customer_name not exist (select customer_name from customer)";

坏:


stringsql = "select * from orders where customer_name not in(select customer_name from customer)";

如果查询语句使用了not in 那么内外表都进行全表扫描,没有用到索引;而not extsts 的子查询依然能用到表上的索引。

⑧ exist和in的区别

in 是把外表和内表作hash 连接,而exists是对外表作loop循环,每次loop循环再对内表进行查询。因此,in用到的是外表的索引, exists用到的是内表的索引。

如果查询的两个表大小相当,那么用in和exists差别不大。

如果两个表中一个较小,一个是大表,则子查询表大的用exists,子查询表小的用in:

例如:表A(小表),表B(大表)

1:


select * from A where cc in (select cc from B)

效率低,用到了A表上cc列的索引;


select * from A where exists(select cc from B where cc=A.cc)

效率高,用到了B表上cc列的索引。

2:


select * from B where cc in (select cc from A)

效率高,用到了B表上cc列的索引;


select * from B where exists(select cc from A where cc=B.cc)

效率低,用到了A表上cc列的索引。

⑨避免在索引列上做如下操作:

◆避免在索引字段上使用<>,!=
◆避免在索引列上使用IS NULL和IS NOT NULL
◆避免在索引列上出现数据类型转换(比如某字段是String类型,参数传入时是int类型)

当在索引列上使用如上操作时,索引将会失效,造成全表扫描。

⑩复杂操作可以考虑适当拆成几步

有时候会有通过一个SQL语句来实现复杂业务的例子出现,为了实现复杂的业务,嵌套多级子查询。造成SQL性能问题。对于这种情况可以考虑拆分SQL,通过多个SQL语句实现,或者把部分程序能完成的工作交给程序完成。

PS:这里再为大家推荐2款SQL在线工具供大家参考使用:

SQL在线压缩/格式化工具:
http://tools.jb51.net/code/sql_format_compress

sql代码在线格式化美化工具:
http://tools.jb51.net/code/sqlcodeformat

希望本文所述对大家数据库程序设计有所帮助。

标签:SQL语句,优化
0
投稿

猜你喜欢

  • python数据可视化之条形图画法

    2021-08-07 13:43:22
  • Python enumerate函数功能与用法示例

    2023-11-06 08:44:07
  • python读写配置文件操作示例

    2021-12-12 03:51:29
  • 正确理解python中的关键字“with”与上下文管理器

    2022-10-26 18:05:02
  • 在WIN命令提示符下mysql 用户新建、授权、删除,密码修改

    2024-01-17 23:34:48
  • 通过python下载FTP上的文件夹的实现代码

    2022-03-16 11:19:12
  • Python聚类算法之基本K均值实例详解

    2023-07-14 12:49:08
  • Jupyter notebook远程访问服务器的方法

    2022-12-25 22:04:36
  • PHP使用PHPexcel导入导出数据的方法

    2024-05-13 09:21:10
  • asp日期函数运用--生成简单的日历

    2008-08-15 13:47:00
  • Python pandas中read_csv参数示例详解

    2021-05-14 06:17:12
  • MySQL limit分页大偏移量慢的原因及优化方案

    2024-01-25 14:28:30
  • ASP编程菜鸟易犯的一个错误

    2008-10-29 13:27:00
  • Python实现 版本号对比功能的实例代码

    2022-07-22 05:53:59
  • Python装饰器的函数式编程详解

    2023-12-27 16:35:31
  • 培养色感的一些经验分享

    2013-11-10 03:47:03
  • 高效测试用例组织算法pairwise之Python实现方法

    2021-07-22 01:09:49
  • asp sql去左右空格函数

    2008-03-04 17:29:00
  • Pandas 稀疏数据结构的实现

    2022-01-29 15:08:32
  • MySQL 密码设置

    2024-01-28 11:53:59
  • asp之家 网络编程 m.aspxhome.com