Re: [PHP-DB] Breaking down a table field....

2003-08-14 Thread Tristan . Pretty
My word, easy when you know how...! Cheers mate!!! [EMAIL PROTECTED] 07/08/2003 14:42 To: [EMAIL PROTECTED] cc: [EMAIL PROTECTED] Subject:Re: [PHP-DB] Breaking down a table field SELECT DISTINCT(Unit) from TABLE_NAME

Re: [PHP-DB] Breaking down a table field....

2003-08-14 Thread Ignatius Reilly
SELECT DISTINCT unit... Ignatius _ - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, August 07, 2003 3:37 PM Subject: [PHP-DB] Breaking down a table field > I have a table, wth many entries. > Each entr

RE: Re: [PHP-DB] Breaking down a table field....

2003-08-14 Thread usban
SELECT Unit,COUNT(Unit) as quantity FROM TABLE GROUP BY Unit -- Oscar Satorre PĂ©rez [EMAIL PROTECTED] -- - Mensaje Original - Remitente: [EMAIL PROTECTED] Destinatario: [EMAIL PROTECTED] Fecha: Jueves, Agosto 7, 2003 3:52pm Asunto: Re: [PHP-DB] Breaking down a table field

Re: [PHP-DB] Breaking down a table field....

2003-08-14 Thread jeffrey_n_Dyke
: 08/07/2003 09:37 AM Subject: [PHP-DB] Breaking down a table field

[PHP-DB] Breaking down a table field....

2003-08-14 Thread Tristan . Pretty
I have a table, wth many entries. Each entry has been asigned a unit to belong to. I want to list all the units dynamically. How can I display all the units, without displaying each instance of the unit? EG: Unititem breakfast cereal breakfast toa

RE: [PHP-DB] Breaking down a table field....

2003-08-14 Thread Duane Lakoduk
: [EMAIL PROTECTED] cc: [EMAIL PROTECTED] Subject:Re: [PHP-DB] Breaking down a table field SELECT DISTINCT(Unit) from TABLE_NAME; [EMAIL PROTECTED] sungard.com To: [EMAIL PROTECTED

Re: [PHP-DB] Breaking down a table field....

2003-08-07 Thread Tristan . Pretty
: [EMAIL PROTECTED] Subject:Re: [PHP-DB] Breaking down a table field SELECT DISTINCT(Unit) from TABLE_NAME; [EMAIL PROTECTED] sungard.com To: [EMAIL PROTECTED

Re: [PHP-DB] Breaking down a table field....

2003-08-07 Thread jeffrey_n_Dyke
] 08/07/2003 09:52 AM Subject: Re: [PHP-DB] Breaking down a table field