Amit Dilip Lonkar a écrit :
> 
> I am trying to fire the following query but it is generating an error:-
> 
> select color from colortable where colorcode = select max(colorcode) from colortable 
>where colorcode <= 50000
> 
> Please Help
> 
> Thanks
> Amit Lonkar
> 
> ---------------------------------------------------------------------
> Before posting, please check:
>    http://www.mysql.com/manual.php   (the manual)
>    http://lists.mysql.com/           (the list archive)
> 

Hi,

Sub select are not (yet) supported.
It's in the manual :

http://www.mysql.com/doc/A/N/ANSI_diff_Sub-selects.html

You could rewrite it as :

select color
  from colortable
  where colorcode <= 50000
  order by colorcode desc limit 1

Regards
--
Joseph Bueno
NetClub/Trader.com

---------------------------------------------------------------------
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