Query Problem Please Help

2002-02-02 Thread Victoria Reznichenko

Amit,

Saturday, February 02, 2002, 3:10:01 PM, you wrote:

ADL I am trying to fire the following query but it is generating an error:-

ADL select color from colortable where colorcode = select max(colorcode) from 
ADL colortable where colorcode = 5

Have a look at: http://www.mysql.com/doc/e/x/example-Maximum-column-group-row.html

ADL Please Help   

ADL Thanks
ADL Amit Lonkar 




-- 
For technical support contracts, goto https://order.mysql.com/
This email is sponsored by Ensita.net http://www.ensita.net/
   __  ___ ___   __
  /  |/  /_ __/ __/ __ \/ /Victoria Reznichenko
 / /|_/ / // /\ \/ /_/ / /__   [EMAIL PROTECTED]
/_/  /_/\_, /___/\___\_\___/   MySQL AB / Ensita.net
   ___/   www.mysql.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




Query Problem Please Help

2002-02-02 Thread Amit Dilip Lonkar


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


Please Help   

Thanks
Amit Lonkar 


-
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




Re: Query Problem Please Help

2002-02-02 Thread Joseph Bueno

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