[PHP] lowest number in field

2001-04-07 Thread george
Is it possible to be able to query the DB find the lowest numebr in the table and then display it on the page. TIA George -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list

Re: [PHP] lowest number in field

2001-04-07 Thread Joe Stump
SELECT * FROM table ORDER BY number LIMIT 1 --Joe On Sat, Apr 07, 2001 at 05:36:04PM +0100, george wrote: Is it possible to be able to query the DB find the lowest numebr in the table and then display it on the page. TIA George -- PHP General Mailing List