oracle学习笔记12_Managing Tables

--------表的分类
Regular table(heap堆表)
Partitioned table
Index-organized table
Cluster table
--------数据类型
oracle学习笔记12_Managing Tables_第1张图片
--------创建临时表:没有牵涉到空间分配,在操作时分配
create global temporary table TABLE_NAME as select * from TABLE_NAME;
使用的时候每个用户在自己的默认表空间里分配段存储信息。

你可能感兴趣的:(oracle)