Array Contains Array in Postgres

Posted by yhuang
Public (Editable by Users)
SQL
None
Edit
select ARRAY[1,4,3] @> ARRAY[3,1,3];   // true
select ARRAY[1,4,3] @> ARRAY[2,1,3];   // false