Powiedz, że mam następujący schemat i dane:
create table images(
id int not null
);
insert into images values(1), (2), (3), (4), (6), (8);
Chcę wykonać zapytanie takie jak:
select id from images where id not exists in(4, 5, 6);
Ale to nie działa. Powyższy przypadek powinien zostać zwrócony 5
, ponieważ nie istnieje on w rekordach tabeli.
źródło