[GENERAL] DUPS in tables columns ERROR: column ". . . " does not exist

2008-08-30 Thread Albretch Mueller
Hi, ~ I am trying to get dups from some data from files which md5sums I previously calculated ~ Here is my mere mortal SQL ~ SELECT md5, COUNT(md5) AS md5cnt FROM jdk1_6_0_07_txtfls_md5 WHERE (md5cnt > 1) GROUP BY md5 ORDER BY md5cnt DESC; ~ and this is what I get: ~ jpk=# SELECT md5, COUNT(md5

Re: [GENERAL] DUPS in tables columns ERROR: column ". . . " does not exist

2008-08-30 Thread Albretch Mueller
Also I know there is a DISTINCT keyword, but I also need to know how many times the particular data in the column is repeated if it is, that is why I need to go: ~ SELECT md5, COUNT(md5) AS md5cnt FROM jdk1_6_0_07_txtfls_md5 WHERE (md5cnt > 1) GROUP BY md5 ORDER BY md5cnt DESC; ~ Thanks lbr

Re: [GENERAL] DUPS in tables columns ERROR: column ". . . " does not exist

2008-08-30 Thread Stefan Kaltenbrunner
Albretch Mueller wrote: Hi, ~ I am trying to get dups from some data from files which md5sums I previously calculated ~ Here is my mere mortal SQL ~ SELECT md5, COUNT(md5) AS md5cnt FROM jdk1_6_0_07_txtfls_md5 WHERE (md5cnt > 1) GROUP BY md5 ORDER BY md5cnt DESC; I think you are looking for

Re: [GENERAL] DUPS in tables columns ERROR: column ". . . " does not exist

2008-08-30 Thread Albretch Mueller
thank you Stefan your SQL worked, but still; I am just asking and my programming bias will certainly show, but aren't you effectivly "calling" count on the table three times if you go: ~ SELECT md5, COUNT(md5) FROM jdk1_6_0_07_txtfls_md5 GROUP BY md5 HAVING COUNT(md5) > 1 ORDER BY COUNT(md5) DESC;

Re: [GENERAL] DUPS in tables columns ERROR: column ". . . " does not exist

2008-08-30 Thread Tom Lane
"Albretch Mueller" <[EMAIL PROTECTED]> writes: > thank you Stefan your SQL worked, but still; I am just asking and my > programming bias will certainly show, but aren't you effectivly > "calling" count on the table three times if you go: The system is smart enough to only do the count() once.

Re: [GENERAL] DUPS in tables columns ERROR: column ". . . " does not exist

2008-08-30 Thread Albretch Mueller
> The system is smart enough to only do the count() once. ~ But not smart enough to make a variable you declare point to that internal variable so that things are clearer/ easier ;-) ~ Thanks lbrtchx -- Sent via pgsql-general mailing list (pgsql-general@postgresql.org) To make changes to your

Re: [GENERAL] DUPS in tables columns ERROR: column ". . . " does not exist

2008-08-30 Thread Martijn van Oosterhout
On Sat, Aug 30, 2008 at 01:36:25PM -0400, Albretch Mueller wrote: > > The system is smart enough to only do the count() once. > ~ > But not smart enough to make a variable you declare point to that > internal variable so that things are clearer/ easier ;-) The SQL standard has pretty clear rules

Re: [GENERAL] DUPS in tables columns ERROR: column ". . . " does not exist

2008-08-31 Thread Lew
Albretch Mueller wrote: Also I know there is a DISTINCT keyword, but I also need to know how many times the particular data in the column is repeated if it is, that is why I need to go: ~ SELECT md5, COUNT(md5) AS md5cnt FROM jdk1_6_0_07_txtfls_md5 WHERE (md5cnt > 1) GROUP BY md5 ORDER BY m