If I have a set of strings, what SQL statement would determine which of those strings are found in one column of a table?
I would want it to return which strings are found, or Null
if none are found.
If I have a set of strings, what SQL statement would determine which of those strings are found in one column of a table?
I would want it to return which strings are found, or Null
if none are found.
SELECT DISTINCT Column1 FROM Table1 WHERE Column1 IN ("String1","String2","String3")