[PHP-DB] Duplicates

2002-10-23 Thread Chris Grigor
Howdi all, How can you list the contents of a table and skip duplicate Dates?? eg select Date from table_name where name = 'Test'; |Date| 2000-01-01 2000-01-02 2000-01-02 --- How would you get rid of this

Re: [PHP-DB] Duplicates

2002-10-23 Thread Jeffrey_N_Dyke
: 10/23/2002 Subject: [PHP-DB] Duplicates 08:04 AM

RE: [PHP-DB] Duplicates

2002-10-23 Thread Snijders, Mark
select date from table_name where name='test' GROUP BY date -Original Message- From: Chris Grigor [mailto:chris;calibre.co.za] Sent: woensdag 23 oktober 2002 14:04 To: PHP Gen; PHP DB Subject: [PHP-DB] Duplicates Howdi all, How can you list the contents of a table and skip duplicate