skip to Main Content

Postgresql – What is the Postgres "All" operator?

I was reading a query that had the all keyword within a function call: select count(all 97); ┌───────────┐ │ count(97) │ ╞═══════════╡ │ 1 │ └───────────┘ Elapsed: 11 ms What does all (outside a subselect) do in postgres? I was…

VIEW QUESTION
Back To Top
Search