For example, I have a list of values in a string:
'a', 'c', 'b', 'd'
From the data table, I got a column result like:
Result
'a'
'b'
how to write a sql which will return the values not in the table: 'c', 'd'
or
NewResult
'c'
'd'
?
It is also ok if other simple tools than sql can be used. I only need the result. Thanks!