Re: FW: Count & Distinct
От
Nils Zonneveld
Тема
Re: FW: Count & Distinct
Дата
Msg-id
39A90F24.D0CC8ECB@casema.net
Список
Дерево обсуждения
FW: Count & Distinct "anuj" <Anuj@in-control.de>
Re: FW: Count & Distinct John McKown <jmckown@prodigy.net>
anuj wrote: > > > >>> select count(distinct(row)) from table; > hi, > I have also tried but I am geting an error. > It's true that you get an error from trying to execute the query above; 'distinct' is not a function but a keyword, count() is a agregate function. Following this the correct notation for your query would be: select count(distinct ) from
В списке pgsql-general по дате отправления