ここでいくつかのテーブルからクエリを作成しようとして、それを完成させることに困惑しています。
表1(回路)
t1.circuit_id
t1.circuit_name
(サンプルデータ)
1234, test1
1235, test2
1236, test3
表2(アカウント)
t2.account_id
t2.account_username
(サンプルデータ)
100, user1
101, user2
102, user3
表3(割り当て)
t3.circuit_id
t3.assignment1 (references table 2 (account_id))
t3.assignment2 (references table 2 (account_id))
t3.assignment3 (references table 2 (account_id))
(サンプルデータ)
1234, 100, 101, 102
1235, 101, 101, 101
1236, 102, 102, 102
私が求めているのは、次のような結果です。
t1.circuit_id, t3.assignment1, t2.account_username, t3.assignment2, t2.account_username, t3.assignment3, t2.account_username.
1234, 100, user01, 101, user02, 102, user03
1235, 101, user02, 101, user02, 101, user02
1236, 102, user03, 102, user03, 102, user03
どうもありがとう、-a