A表idcolumn1column21aa12aa23aa34bb15bb26bb37cc1B 表idcolumn1column31aa12aa23bb14bb2A 表和 B 表通过 column1 字段关联,筛选条件是 A 表中 column2 的值在 B 表的 column3 中没有与之对应的值。按上面表的数据,得到的结果应该为:idcolumn1column23aa36bb37cc1
1 回答
蝴蝶刀刀
TA贡献1801条经验 获得超8个赞
select * from a where not exists (select 1 from b where a.column1=b.column1 and a.column2=b.column2;
添加回答
举报
0/150
提交
取消