SQL在select

时间:2017-02-22 21:11:55

标签: mysql

我需要SQL中复杂的select语句的帮助。我在这里有这两张表:

表用户:

enter image description here

表contacts_from_user:

enter image description here

当我选择

SELECT name, vorname, gebdat, bezeichnung, wert 
FROM user 
    JOIN contacts ON u_id = user_u_id

我为一个用户获得了多行,因为他有多个联系人选项,但我需要将其放在一行中:

enter image description here

该行应如下所示:

  

name,vorname,gebdat,bezeichung_1,wert_1,bezeichnung_2,wert_2 .......

我是怎么做到的?

非常感谢!

0 个答案:

没有答案