1

次のクエリを書いています。

select c.place,a.type,group_concat(b.name) from place c
inner join menutype a
on c.id=a.id
inner join menuname b
on a.menuid=b.menuid
group by a.type

私が今得ている結果は次のとおりです。

Place      Type      group_concat(Name)
A          Left      New Document,Vouchers
A          Top       Reports,Accounting

そして、次のような結果が必要です:

A     Left(New Document,Vouchers),Top(Reports,Accounting)

よろしくお願いします。

4

1 に答える 1