Hello guys
lets say I have a select with a long given list like this:
select id from article where id in
(1243216,
12613,
3525,
236262,
2363,
....)
How can I get all the values out of that given list, that can NOT be found in my article table - without importing those list values in a new table?
select id from article where id NOT in
[LIST]
obviously won't work, because then I get the whole big rest of the article table.
Thank you very much