Re: finding duplicate numbers in a select distinct statement

From: Terry <td3201(at)gmail(dot)com>
To: Grzegorz Jaśkiewicz <gryzman(at)gmail(dot)com>
Cc: PostgreSQL <pgsql-general(at)postgresql(dot)org>
Subject: Re: finding duplicate numbers in a select distinct statement
Date: 2010-03-03 16:45:07
Message-ID: 8ee061011003030845y63c0bd40w23e70806558404b8@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

2010/3/3 Terry <td3201(at)gmail(dot)com>:
> 2010/3/3 Grzegorz Jaśkiewicz <gryzman(at)gmail(dot)com>:
>> select count(*) AS count, error, ev_text FROM clients_event_log GROUP BY
>> error, ev_text;
>>
>> you can add 'HAVING count(*) > X'; , if you want to see only those with
>> count above X, etc.
>>
>>
>> --
>> GJ
>>
>
> I was just about to reply to the group.  Would this work too?
> psql -d foo -c 'SELECT COUNT(DISTINCT(error)) AS count,error,ev_text
> FROM dsclient_logs WHERE ev_id > 23572151 GROUP BY error,ev_text'
>

My statement was broke. GJ's was spot on. Thanks!

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Bill Moran 2010-03-03 16:48:35 Re: Work Mem Allocation Questions
Previous Message Brad Nicholson 2010-03-03 16:24:22 Work Mem Allocation Questions