Is there any shorter way to look for multiple matches:
SELECT * from table WHERE column LIKE \"AAA%\" OR column LIKE \"BBB%\" OR column LIKE \
Following query helped me. Instead of using LIKE, you can use ~*.
LIKE
~*
select id, name from hosts where name ~* 'julia|lena|jack';