当前位置:   article > 正文

为什么要用where 1=1

where 1=1 作用

where 1=1; 这个条件始终为True,在不定数量查询条件情况下, 1= 1可以很方便的规范语句,1=1 是永恒成立的,意思无条件的,也就是说在SQL语句中有没有这个1=1都可以。

如:web界面查询用户的信息,where默认为1=1,这样用户即使不选择任何条件,sql查询也不会出错。如果用户选择了姓名,那么where变成了where 1=1 and 姓名='用户输入的姓名',如果还选择了其他的条件,就不断在where 条件后追加 and语句就行了。

如果不用1=1的话,每加一个条件,都要判断前面有没有where 条件,如果没有就写where ...,有就写and语句,因此此时用1=1可以简化了应用程序的复杂度。

例如为不定数量的查询条件,我们在后台写查询的时候,类似于这样的语句 string sql ="select * from table where"

if(starttime!=null){

sql =sql+" starttime="+starttime

if(endtime !=null){

sql =sql+"and endtime ="+endtime

}

这时我们的查询语句就是 select * from table where starttime =2015-04-05 and endtime = 2015-04-07,查询语句正确

但是如果条件都不满足的话,语句就变成了 select * from table where ,这时候查询就会报错,

加上1=1的时候

string sql ="select * from table where 1=1",

if(starttime!=null){

sql =sql+" and  starttime="+starttime

if(endtime !=null){

sql =sql+"and endtime ="+endtime

}

当两个条件成立的时候 select * from table where 1=1 and starttime =2015-04-05 and endtime = 2015-04-07, 语句正确

当两个条件不满足时 select * from table where 1=1 ,语句正确,会返回table表的所有数据


来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/28939273/viewspace-2655211/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/28939273/viewspace-2655211/

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/273343
推荐阅读
相关标签
  

闽ICP备14008679号