Search Postgresql Archives

Select unique set of record, distinct on, please help!!!

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Dear all,
     I am still new to the PostGres DB, I 've been using other DB for
quite a while, so SQL is OK with me. I am running into problem trying
to condense duplicate records in a table into one record. Naturally, I
think about 'DISTINCT ON' in select, but I just couldn't figure out
the proper syntax to use it correctly. So, please help.

    My table is as follow:
   Column    |         Type                |
Modifiers
-----------------+-------------------------------
+-------------------------------------------------------
   tag_id      | character varying(15) |
 enddate     | date                         |
 storetcodei | integer                     |
      gtlt        | character(1)             |
    value       | real                          |
    autoid      | integer                     | not null default
nextval('results_autoid_seq'::regclass)


    The main issue is that a lot of records have the same 'tag_id' and
'enddate', which is redundant. So I was trying to get rid of all the
duplicates, but just leave one copy in the database, simple you say,
right? NOT!

    I used many variants of the following query, but it seems psql is
not doing the right thing, it always gotten rid of all duplicate, not
leaving even one record from all the duplicates, in other db, all I
need is 'unique', so please could someone just give me a SELECT INOT
or CREATE TABLE AS statements that can rid of the duplicate but leave
one copy in the table.

create table results1 as select distinct on (tag_id,enddate) * from
resultsall;

    I searched quite a bit about distinct on, I can not understand the
logic behind the combination of distinct on and order by, so please
help with a working statement?
    Many thanks,
    T.



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Postgresql Jobs]     [Postgresql Admin]     [Postgresql Performance]     [Linux Clusters]     [PHP Home]     [PHP on Windows]     [Kernel Newbies]     [PHP Classes]     [PHP Books]     [PHP Databases]     [Postgresql & PHP]     [Yosemite]
  Powered by Linux