Problem with select statement for duplicate data

Поиск
Список
Период
Сортировка
От Machiel Richards
Тема Problem with select statement for duplicate data
Дата
Msg-id 1292924136.8774.4.camel@machielr-laptop
обсуждение исходный текст
Ответы Re: Problem with select statement for duplicate data  (Jayadevan M <Jayadevan.Maymala@ibsplc.com>)
Список pgsql-novice
Hi All

        I am trying to runt he following select statement on a table in order search for duplicate rows in the table

                select column1,column2,column3,count() from table group by column1,column2,column3 having count() > 1;

        This however gives me the following error:

                ERROR: count(*) must be used to call a parameterless aggregate function


        Does anybody know what the correct statement or syntax is in postgres in order to run the same type of query?


            I need to go through 974 tables to look for duplicate rows in all the tables, however struggling to get this command right.

Regards
Machiel

В списке pgsql-novice по дате отправления:

Предыдущее
От: Николай Ижиков
Дата:
Сообщение: linux ossp-uuid
Следующее
От: Jayadevan M
Дата:
Сообщение: Re: Problem with select statement for duplicate data