Set Inclusion With hstore
Last updated
Was this helpful?
Last updated
Was this helpful?
In PostgreSQL, hstore
records can be compared via set inclusion. The @>
and <@
operators can be used for this. The @>
operator checks if the right operand is a subset of the left operand. The <@
operator checks if the left operand is a subset of the right operand.
See the for more details.