如果我有这样一个sql查询:
select *
into new_table
from
(
select * from table_1 union
select * from table_2 union
select * from view
)
你认为这是实体化的桌子吗?你认为这是什么?
如果你正在使用Postgres,如果你做d
,你会发现new_table
是table
类型
注意:MySQL和Oracle使用DESC new_table
样本结果:
plsql> d
List of relations
Schema | Name | Type | Owner
--------+---------------+-------------------+----------
public | new_table | table | postgres