Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Verbinden Sie eine ganze Tabelle als einzelne Zeile

Verwenden Sie einen Cross Join und group_concat .

Abfrage

select t1.name,group_concat(distinct t2.color separator ',') as color
from tbl1 t1,tbl2 t2
where t1.name = 'Paul'
group by t1.name;

SQL-Fiddle