利君工作室 发表于 2021-7-18 23:30:13

在云表数据接口关联中如何实现not exists或not in

各位,在云表数据接口关联中如何实现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 发表于 2021-7-19 09:36:59

本帖最后由 160678715511389 于 2021-7-19 09:38 编辑


做一个左关联,匹配出全部C的数据,然后过滤表2数据项C为空的,就能查出表2缺了哪些数据项C了




页: [1]
查看完整版本: 在云表数据接口关联中如何实现not exists或not in