現在、クエリを実行しています:
select table1.columnA as Barrier_1,
table2.columnB as Action_1,
from table2
join table1 on table2.PrimKey = table1.PrimKey
where table1.columnA is not null
and table2.columnB is not null
group by table1.columnA, table2.columnB
order by table1.columnA
テーブルを返します:
Barrier_1 Action_1
____________________
01 | 01
01 | 02
02 | 01
02 | 03
02 | 04
03 | 02
03 | 03
04 | 01
05 | 04
方法がわからないサブクエリも実行したいです。バリア コードとアクション コードの両方を使用して、別のテーブル (tableC) から一意の値を取得する必要があります。したがって、上に示した各行には、tableC から返される「Desc」という別のフィールドがあります。
Barrier_1 Action_1 Desc
______________________________
01 | 01 | 15
01 | 02 | 21
02 | 01 | 17
02 | 03 | 12
02 | 04 | 19
03 | 02 | 26
03 | 03 | 13
04 | 01 | 22
05 | 04 | 14