I have a table my_table with column my_column and a large list my_list of LONGs. I'd like to find all values that present in the my_list but not present in the my_table.my_column. How can I do that with SQL without repeating huge list of LONGs twice? Please shed some light as I'm Oracle beginner. Thank you.
EDIT:
my_list is just a short form of comma-separated values (1, 2, 3, 4), it's not a variable, just a way to call.