Materialized Tables



如果我有这样一个sql查询:

select *
into new_table
from
(
select * from table_1 union
select * from table_2 union
select * from view
)

你认为这是实体化的桌子吗?你认为这是什么?

如果你正在使用Postgres,如果你做d,你会发现new_tabletable类型

注意:MySQL和Oracle使用DESC new_table

样本结果:

plsql> d
List of relations
Schema |     Name      |       Type        |  Owner
--------+---------------+-------------------+----------
public | new_table     | table             | postgres

相关内容

  • 没有找到相关文章

最新更新