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
quickly search will be so, but you should use index gist or gin for intarray type Postgres intarray
SELECT * FROM table WHERE values @> ARRAY[10];