Voor wat u wilt, om alle rijen te selecteren om in één rij in Excel in te voegen. Zorg voor zoveel rijen in je tabel als je wilt.
SELECT
CONCAT(
group_id,',', GROUP_CONCAT(
CONCAT_WS(',', item_code, item_label, item_detail, item_score)
)
)
FROM thetable
Retourneert CSV:
10,BLU123,Blue 123,Blah blah 123,3,BLU124,Blue 124,Blah blah 124,6,BLU125,Blue 125,Blah blah 125,2