Joinutility seperatorLogin utility separator Infobright.com
   
 
GROUP_CONCAT not supported by Infobright
Posted: 29 July 2010 02:23 PM   Ignore ]  
Newbie
Rank
Total Posts:  1
Joined  2009-07-22

Hi,

I have a few queries that do something like:

select t1.id, t2.names
from table1 t1
left join (
  select id,group_concat(name) as names
  from table2
  group by id
) t2 on (t2.id=t1.id)
group by t1.id;

If I run the select in the left join by itself it runs pretty fast:

  select id,group_concat(name) as names
  from table2
  group by id;

But when I add the group_concat into another query (inside the left join or any other complex query) it takes forever to run even when the tables just have a few thousand rows.

Are there any plans to implement group_concat on Infobright so that queries don’t run on MySQL engine?

Thanks,

Ivan.

Profile
 
Posted: 05 July 2011 10:35 AM   Ignore ]   [ # 1 ]  
Newbie
Rank
Total Posts:  3
Joined  2011-07-05

I second this feature request. I have a few queries that use GROUP_CONCAT too.

Profile