SyntaxFix
Write A Post
Hire A Developer
Questions
This should work:
select * from mytable where 'Journal'=ANY(pub_types);
i.e. the syntax is <value> = ANY ( <array> ). Also notice that string literals in postresql are written with single quotes.
<value> = ANY ( <array> )