not in clause in mysql code example
Example 1: mysql not in list
#filter in MySQL:
WHERE id_field not in ('817','803','495')
Example 2: mysql query where in
SELECT * FROM `tableName` WHERE `ColumnName` IN (1,2,3);
#filter in MySQL:
WHERE id_field not in ('817','803','495')
SELECT * FROM `tableName` WHERE `ColumnName` IN (1,2,3);