StackTc 2018-06-25 05:52 采纳率: 90.9%
浏览 931
已采纳

sql的exsist当作筛选条件的问题

比如有一个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才是主表。

  • 写回答

9条回答 默认 最新

  • qq_25967045 2018-06-25 06:33
    关注

    首先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嘛??

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(8条)

报告相同问题?

悬赏问题

  • ¥15 用verilog实现tanh函数和softplus函数
  • ¥15 求京东批量付款能替代天诚
  • ¥15 slaris 系统断电后,重新开机后一直自动重启
  • ¥15 51寻迹小车定点寻迹
  • ¥15 谁能帮我看看这拒稿理由啥意思啊阿啊
  • ¥15 关于vue2中methods使用call修改this指向的问题
  • ¥15 idea自动补全键位冲突
  • ¥15 请教一下写代码,代码好难
  • ¥15 iis10中如何阻止别人网站重定向到我的网站
  • ¥15 滑块验证码移动速度不一致问题