我有 2 个表,其中一个通过 id 引用了第一个表
例如,第一个表是具有字段的客户
id firstname lastname
------ --------- ---------
1 john smith
2 jessica james
例如,第二个表是具有字段的产品
id customer_id product descr
------- ----------- --------- ------
1 1 ts Shirt
2 1 ti Tie
3 2 sk skrit
我需要一个将输出以下内容的查询
customer.firstname customer.lastname product_and_desc
------------------ ------------------ ---------------------
john smith ts-Shirt , ti-Tie
jessica james sk-skirt
每个客户的产品行变量。
感谢您的帮助:)
谢谢,