通过以下查询,我正在创建一个新表。
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