How to use SQL NOT LIKE condition with multiple values in PostgreSQL? Snippets SELECT * from table WHERE column NOT SIMILAR TO '(AAA|BBB|CCC)%'; 1 SELECT * from table WHERE column NOT SIMILAR TO '(AAA|BBB|CCC)%';