On 28-Jun-01 Jawad Khan wrote:
> Hope you can find the problem in the following SQL command:
> 
> delete from alarms where raiseTime = ( select MIN(raiseTime) from alarms)
> limit 1 ;
> 

That is a sub-select, currently unsupported in MySQL.

try :
 delete from alarms order by raiseTime limit 1;

Regards,
-- 
Don Read                                       [EMAIL PROTECTED]
-- It's always darkest before the dawn. So if you are going to 
   steal the neighbor's newspaper, that's the time to do it.

---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to