以下のようなクエリを書くことはできますか?内部クエリの「column4」はテーブル名で、外部クエリで使用したい
select x.column1, x.column2, x.column3, d.column5
from (select
a.column1, a.column2, a.column3, b.column4
from
table1 a inner join table2 b on a.priKeyCol = b.prikeyCol
)x
inner join column4 d on x.column2 = d.priColKey