复制代码 代码如下:
table a columns(key,value);
table b columns(key,value);
select a.* from a left join b
on a.key = b.key
where b.key is null
复制代码 代码如下:
table a columns(key,value);
table b columns(key,value);
select a.* from a left join b
on a.key = b.key
where b.key is null