假设我有以下架构和数据:
create table images(
id int not null
);
insert into images values(1), (2), (3), (4), (6), (8);
我想执行如下查询:
select id from images where id not exists in(4, 5, 6);
但这不起作用。上面的情况应该返回5
,因为它不存在于表记录中。
假设我有以下架构和数据:
create table images(
id int not null
);
insert into images values(1), (2), (3), (4), (6), (8);
我想执行如下查询:
select id from images where id not exists in(4, 5, 6);
但这不起作用。上面的情况应该返回5
,因为它不存在于表记录中。