早教吧 育儿知识 作业答案 考试题库 百科 知识分享

sql两个表连接查询,如何将列变成一行显示有两个表,customer和phone,customer主键是customerid,phone主键是phoneid其结构如下customercustomerid,customername,address1alll2bdddpho

题目详情
sql两个表连接查询,如何将列变成一行显示 有两个表,customer和phone,customer主键是customerid,phone主键是phoneid其结构如下
customer
customerid,customername,address
1 a lll
2 b ddd
phone
phoneid,customerid,phonenum
1 1 123
2 1 234
3 1 342
4 2 366
5 2 333
如何实现这样的查询结果
customerid,customername,address,phonenum1,phonenum2,phonenum3
1 a lll 123 234 342
▼优质解答
答案和解析
select customer.customerid,customername,address,phoneid,phonenum1,phonenum2,phonenum3 from customer,phone where customer.customerid=phone.customerid and customer.customerid = 1;

注意:可能有字段名拼写错误,使用前请检查