比如有一个sql如下
select a.* from a
left join b on a.aid = b.objid
where 1 = 1
and exsitst( select 1 from f where f.userid = b.userid and f.xxx = ?)
如上?那里如果输入了参数的话顶多是让b表的数据出不来开对吧?总条数还是不变的因为a才是主表。
比如有一个sql如下
select a.* from a
left join b on a.aid = b.objid
where 1 = 1
and exsitst( select 1 from f where f.userid = b.userid and f.xxx = ?)
如上?那里如果输入了参数的话顶多是让b表的数据出不来开对吧?总条数还是不变的因为a才是主表。
首先exists函数返回的事true或者false,综上语句只有两种情况,如果select 1 from f where f.userid = b.userid and f.xxx = ?有记录则返回true,查出表a所有数据,否则一条都查不出来;因为where条件是在查询a与b表关联之后的结果再进行删选的。 除非你把条件写在子查询表中,如:
select a.* from a
left join (select * from b exsits( select 1 from f where f.userid = b.userid and f.xxx = ?)) as b
where 1 = 1
住:left join on ,可以不写on嘛??? 还有就是exsitst不应该事exists嘛??