我有 3 张桌子:
1)participant
***********
+id_participant
+id_poste
+name
+email
2) profile_formaion
****************
+id_poste
+id_formation
3) formation
*********
+id_formation
+lable
EXAMPLE:
数据:参与者
1 | 2 | user1 | user1@mail.com
数据:profile_formation
2 | 3
2 | 4
数据:编队
1 |lable1
2 |lable2
3 |lable3
4 |lable4
任何人都可以帮助我如何使用 sql statement(join) 来获得结果:
数据:结果
1 | 2 | user1 | user1@mail.com | label3
1 | 2 | user1 | user1@mail.com | label4
谢谢