Postgresql – Element in list-of-elements when element is an array
What would be the correct syntax in Postgres to do something like: SELECT ARRAY[4,5,6] IN ARRAY[[4,5,6],[7,8,9]]; Some dbs have a list_contains or IN UNNEST(arr_expr) to do something like the above but I haven't been having luck checking in Postgres docs.