Re: removing duplicates and using sort

From: "Edward W(dot) Rouse" <erouse(at)comsquared(dot)com>
To: "'Nathan Mailg'" <nathanmailg(at)gmail(dot)com>, <pgsql-sql(at)postgresql(dot)org>
Subject: Re: removing duplicates and using sort
Date: 2013-09-16 14:04:40
Message-ID: 080201ceb2e5$b10e4380$132aca80$@com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Change the order by to order by lastname, firstname, refid, appldate

From: pgsql-sql-owner(at)postgresql(dot)org [mailto:pgsql-sql-owner(at)postgresql(dot)org]
On Behalf Of Nathan Mailg
Sent: Saturday, September 14, 2013 10:36 PM
To: pgsql-sql(at)postgresql(dot)org
Subject: [SQL] removing duplicates and using sort

I'm using 8.4.17 and I have the following query working, but it's not quite
what I need:

SELECT DISTINCT ON (refid) id, refid, lastname, firstname, appldate
FROM appl WHERE lastname ILIKE 'Williamson%' AND firstname ILIKE
'd%'
GROUP BY refid, id, lastname, firstname, appldate ORDER BY refid,
appldate DESC;

I worked on this awhile and is as close as I could get. So this returns rows
as you'd expect, except I need to somehow modify this query so it returns
the rows ordered by lastname, then firstname.

I'm using distinct so I get rid of duplicates in the table where refid (an
integer) is used as the common id that ties like records together. In other
words, I'm using it to get only the most recent appldate (a date) for each
group of refid's that match the lastname, firstname where clause.

I just need the rows returned from the query above to be sorted by lastname,
then firstname.

Hope I explained this well enough. Please let me know if you need more info.

Thanks!

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message David Johnston 2013-09-16 14:42:49 Re: removing duplicates and using sort
Previous Message Nathan Mailg 2013-09-15 02:36:21 removing duplicates and using sort