I came across a query in postgres here which uses the @>
operator on earth objects.
I've searched everywhere, but have come up empty on the meaning of this operator (and likely others like it, eg: @<
, etc...).
>
is obvious. I also found that @
will take the absolute value of something. So my best guess is this does an absolute greater than
comparison of two values?
Is that correct? Is this documented somewhere in the postgres docs? I'm even more curious to understand what the operator does on earth objects.
Thanks!
In general @> is the "contains" operator. It is defined for several data types. arrays: http://www.postgresql.org/docs/current/static/functions-array.html.
PostgreSQL provides two native operators -> and ->> to help you query JSON data. The operator -> returns JSON object field as JSON. The operator ->> returns JSON object field as text.
In general @>
is the "contains" operator.
It is defined for several data types.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With