Postgresql – Operator precedence of `EXISTS`
In Postgres, does the EXISTS operator have the highest precedence of all? For example: SELECT 1 + EXISTS (SELECT 1)::int; It seems to be missing from the manual page. Though the highest one is ::, meaning EXISTS would be higher?…