SQL语句问题,除开什么之外
答案:4 悬赏:40 手机版
解决时间 2021-03-25 23:47
- 提问者网友:战皆罪
- 2021-03-25 14:16
SQL语句问题,除开什么之外
最佳答案
- 五星知识达人网友:患得患失的劫
- 2021-03-25 15:36
select A.* from A where A.a not in (select b.a from b);
全部回答
- 1楼网友:拾荒鲤
- 2021-03-25 17:32
太复杂了
- 2楼网友:我住北渡口
- 2021-03-25 17:09
select A.* from A where a not in (select * from B)
或者
select A.* from A left outer join B on A.a=B.a where B.a is null
或者
select A.* from A left outer join B on A.a=B.a where B.a is null
- 3楼网友:狂恋
- 2021-03-25 16:24
select * from A a
where not exists
(select 1 from B b where b.a = a.a)
where not exists
(select 1 from B b where b.a = a.a)
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯