In PostgreSQL, the <@
operator checks to see whether the second array contains the first array. That is, whether or not the array on the right of the operator contains all elements in the array to the left.
The function returns a Boolean result: It returns true
if the second array contains the first array, and false
if it doesn’t. If the result is unknown, it returns NULL
.