sql where 1 = 1的原理

where 1=1      这个条件始终为True,在不定数量查询条件情况下,1=1可以很方便的规范语句。


主要体现在mybatis的.xml查询语句中


①加了where 1=1,并且假设customerId和alertTypeId有值那么这条话的sql语句为:

select count(*) count_sum from v_alert_device where 1=1 and customer_id = 'hahaha' and alert_type_id = 123 order by count_sum desc LIMIT 10


②不加where 1=1,并且假设customerId和alertTypeId没有值那么这条话的sql语句为:

select count(*) count_sum from v_alert_device where order by count_sum desc LIMIT 10

那么就会报错。

加了where 1=1,并且假设customerId和alertTypeId没有值那么这条话的sql语句为:

select count(*) count_sum from v_alert_device where 1=1 order by count_sum desc LIMIT 10

则会返回table中的根据count_sum 降序的前十条值。


由此可以看出,where 1=1 这种写法 虽然给程序开发人员带来不便,还要避免sql注入的问题。

但 where 1=1 这种写法 也会给程序编写增加了方便。




你可能感兴趣的:(代码常用知识)