ว่าฉันมีคีมาและข้อมูลต่อไปนี้:
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
เนื่องจากไม่มีอยู่ในระเบียนในตาราง