Is there any other way to search for a certain value in an integer[] column in Postgres?
integer[]
My currently installed Postgres version does not allow the
For equality checks you can simply:
SELECT * FROM table WHERE 10 = ANY (values);
Read about ANY/SOME in the manual.