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

Aggregatfunktion in MySQL - Liste (wie LISTAGG in Oracle)

Sie suchen nach GROUP_CONCAT( )

Versuchen Sie Folgendes:

select group_concat(MyString separator ', ') as myList from table
where id < 4

Natürlich können Sie group by die Ergebnisse.