mysql>
select day from furqi where start in
(
select start from (select start as start,end as end,sum(somecol) as ss from furqi where day='2006/07/31' group by start) as sss group by start,end order by max(ss) desc limit 0,1
);
ERROR 1235 : This version of MySQL doesn't yet support 'LIMIT & IN/ALL/ANY/SOME subquery'
mysql>
what i wanted to do is to select a day from a table where start has a particular value, and that value of start is obtained from a subquery. that subquery is executed successfully seperately. but gives this error when in subquery.
What are your views??
-- This message may have been cut off and the rest will only be shown to members. To become a member, click here --