我在 MySQL 中有如下表:
表项:
id item_name contact_id
1 Cocacola 1;3
2 Clothes 2;3
表接触
id name tel
1 Dona xxx-xxx-xxxxx
2 Maro xxx-zzz-zzzzz
3 Sana yyy-mmm-mmmmm
加入后需要的结果:
id item_name contact_tel
1 Cocacola xxx-xxx-xxxxx, yyy-mmm-mmmmm
2 Clothes xxx-zzz-zzzzz, yyy-mmm-mmmmm
我可以在 MySQL 中使用 join 获得这样的结果吗?