I need to check which IDs were not found in the table.
SELECT * FROM example_table WHERE id IN (123, 124, 125, 126, 127)
Since of (123, 124, 125, 126, 127)
, in the table I only have (123, 124)
.
The result I'm expecting is (125, 126, 127)
.
I've explored the Sub-Querys option but I can not figure out how I'll finish.