以下のクエリで、新しいテーブルを作成しています。
select * from TableA, tableB, (another query to make new table)TableC
where condition
これにより、クエリが長くてひどく見えます。後でクエリを実行する一時テーブルを作成する方法があるかどうかはわかりません。
たとえば、上記のクエリに基づくと、次のようになります。
tableC = another query to make new table
select * from tableA, tableB, tableC
where condition