sql where string does not contain code example
Example 1: sql not contains
SELECT * FROM tbl WHERE tbl.col NOT LIKE '%text%';
Example 2: sql doesn't contain
/*Return data with the exception of the identified values*/
SELECT COLUMN1, COLUMN2 ...
FROM SCHEMA_NAME.TABLE_NAME
WHERE NOT (COLUMN1 LIKE '%VALUE%');