各位,在云表数据接口关联中如何实现not exists或not in呢? select * from tab where c not in (select c from tab2) 或是select * from a where exists (select 1 from b where a.id = b.id) 如何取差集?
160678715519642已获得悬赏 3 云币
最佳答案
做一个左关联,匹配出全部C的数据,然后过滤表2数据项C为空的,就能查出表2缺了哪些数据项C了
|
+10
2 条回帖
本帖最后由 160678715511389 于 2021-7-19 09:38 编辑 做一个左关联,匹配出全部C的数据,然后过滤表2数据项C为空的,就能查出表2缺了哪些数据项C了 |
+11