Mysql中使用where 1=1有什么问题吗

昨天偶然看见一篇文章,提到说如果在mysql查询语句中,使用where 1=1会有性能问题??

这着实把我吸引了,因为我项目中就有不少同事,包括我自己也有这样写的。为了不给其他人挖坑,赶紧学习一下,这样写sql到底有没有性能问题?

where 1=1的使用场景

我们来看下,where 1=1实际是怎么使用的, 先来看一段SQL

<select id="selectCmsCourseList" parameterType="java.util.Map" resultMap="CourseMap">
    SELECT
     a.id,
     a.category_id,
     a.model_id,
     b.*
    FROM
     cms_content a
    LEFT JOIN cms_course b ON a.id = b.id
    WHERE 1=1
    <if test="courseName != null and courseName != ''">
       AND b.course_name like concat(concat("%",#{courseName}),"%")
    </if>
    <if test="disabled != null">
       AND a.disabled = #{disabled}
    </if>
    <if test="categoryId != null">
       AND a.category_id = #{categoryId}
    </if>
</select>

如果用过mybatis的童鞋,看到这段代码应该很熟悉了吧,这里使用where 1=1的作用,就是为了方便后面的条件,能通过if判断,使用AND连接起来,这样即使后面if全部是false,没有参数,这个sql也不会报错。

where 1=1的替换方案

其实上面的这个写法,如果用mybatis,完全可以用where标签来替换,如:

<select id="selectCmsCourseList" parameterType="java.util.Map" resultMap="CourseMap">
    SELECT
     a.id,
     a.category_id,
     a.model_id,
     b.*
    FROM
     cms_content a
    LEFT JOIN cms_course b ON a.id = b.id
    <where>
        <if test="courseName != null and courseName != ''">
           AND b.course_name like concat(concat("%",#{courseName}),"%")
        </if>
        <if test="disabled != null">
           AND a.disabled = #{disabled}
        </if>
        <if test="categoryId != null">
           AND a.category_id = #{categoryId}
        </if>
    </where>
</select>

如果你使用了这个写法,就不存在1=1的问题了,所以也不用纠结,但本着打破砂锅问到底的精神,我们还是得探究一下使用1=1到底有没有性能问题

使用where 1=1有性能问题吗?

先来问问AI

可以看到,AI给到的答复是,基本没有性能问题,更多的是代码风格和可读性!

亲自检测

为了跟进一步测试,我们来写个SQL看看实际性能是否有差别

  1. explain select * from user;

  2. explain select * from user where 1=1;

  3. explain select * from user where id = 8;

  4. explain select * from user where 1=1 and id = 8;

可以看到示例1和示例2, 示例3和示例4,这两组写法,都是有个1=1的区别,但性能都是一样的,因此我们基本可以判定,这个写法,对性能是没有影响的。

总结

如果你在项目中也有使用where 1=1写的SQL,如果从可读性或者代码风格考虑,建议优化掉,但如果担心性能问题,则大可不必过多考虑~

相关推荐
恒辉信达5 分钟前
hhdb数据库介绍(8-4)
服务器·数据库·mysql
小兜全糖(xdqt)2 小时前
mysql数据同步到sql server
mysql·adb
Karoku0662 小时前
【企业级分布式系统】Zabbix监控系统与部署安装
运维·服务器·数据库·redis·mysql·zabbix
鹿屿二向箔3 小时前
基于SSM(Spring + Spring MVC + MyBatis)框架的汽车租赁共享平台系统
spring·mvc·mybatis
周全全3 小时前
MySQL报错解决:The user specified as a definer (‘root‘@‘%‘) does not exist
android·数据库·mysql
白云如幻3 小时前
MySQL的分组函数
数据库·mysql
秋意钟5 小时前
MySQL日期类型选择建议
数据库·mysql
沐雪架构师6 小时前
mybatis连接PGSQL中对于json和jsonb的处理
json·mybatis
ac-er88886 小时前
MySQL如何实现PHP输入安全
mysql·安全·php
桀桀桀桀桀桀7 小时前
数据库中的用户管理和权限管理
数据库·mysql