sql语句and 1=1是什么意思?
selecta.ename,a.mgr,a.sal,b.deptnofromempa,deptbwherea.deptno=b.deptnoandb.deptnoin('...
select a.ename, a.mgr, a.sal, b.deptno
from emp a, dept b
where a.deptno = b.deptno
and b.deptno in ('ACCOUNTING', 'RESEARCH', 'SALES', 'OPERATIONS')
AND 1=1; 展开
from emp a, dept b
where a.deptno = b.deptno
and b.deptno in ('ACCOUNTING', 'RESEARCH', 'SALES', 'OPERATIONS')
AND 1=1; 展开
2个回答
展开全部
就是判断一下真假
因为1永远=1,所以肯定为真
不过这里用不用1=1没什么作用,前边就能确定结果了
你可以换成1=0,这样就恒为假,所以当后边是1=0时你选不出来任何数据
因为1永远=1,所以肯定为真
不过这里用不用1=1没什么作用,前边就能确定结果了
你可以换成1=0,这样就恒为假,所以当后边是1=0时你选不出来任何数据
更多追问追答
追问
前面确定结果?where t1.id=t2.id and 1=1 and where t1.name=t2.name //那这个情况t1.id=t2.id不成立,后面,t1.name=t2.name就不执行聊吗?大哥
追答
都执行啊,跟每个条件的顺序无关
那几个and条件都是并列的,只要有一个没对应上,就都查不出来,所以
where t1.id=t2.id and 1=1 and where t1.name=t2.name
where t1.id=t2.id and where t1.name=t2.name
where t1.id=t2.id and where t1.name=t2.name and 1=1
都是一样的结果,如果你有数据的话,可以测试一下,这三种运行方式
展开全部
and 1=1做为判定条件是真,这个语句本身有没有这个"and 1=1"其查询结果是没有区别的.
直接这么写查询的比较少见,经常出现在开发程序的SQL语句拼接中,而且一般出现在where的后面,即:
select .....where 1=1
然后是根据窗体或动态网页对条件的使用与否拼接 and 条件1 至 and 条件N
另外就是 or 1=1的情况,用与在满足某些特规条件的情况下直接忽略其他的判断.
直接这么写查询的比较少见,经常出现在开发程序的SQL语句拼接中,而且一般出现在where的后面,即:
select .....where 1=1
然后是根据窗体或动态网页对条件的使用与否拼接 and 条件1 至 and 条件N
另外就是 or 1=1的情况,用与在满足某些特规条件的情况下直接忽略其他的判断.
追问
前面确定结果?where t1.id=t2.id and 1=1 and where t1.name=t2.name //那这个情况t1.id=t2.id不成立,后面,t1.name=t2.name就不执行聊吗?大哥
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询