how to use multiple columns in not in sql code example
Example: sql server check for value in multiple columns
SELECT * FROM table WHERE 123 IN(col1, col2, col3, col4);
SELECT * FROM table WHERE 123 IN(col1, col2, col3, col4);