搜索

Oracle创建表和索引

发表于 2025-11-05 11:00:18 来源:益强智未来
Oracle创建表和索引
复制create table tablename   (   f1 NUMBER(10) not null,创建   f2 NUMBER(10) null ,   f3 NUMBER(3) defalut 0,   pt number(3) not null ,   constraint PK_tablename primary key (f1)   using index   tablespace ts_name   storage   (   initial 1m   next 1m   pctincrease 0   )   )   pctfree 10   tablespace ts_name   storage   (   initial 1m   next 1m   pctincrease 0   )   partition by range(pt)   (partition part000 values less than (1) tablespace ts_name,   partition part001 values less than (2) tablespace ts_name,   )   /  1.2.3.4.5.6.7.8.9.10.11.12.13.14.15.16.17.18.19.20.21.22.23.24.25.26.27.28.29.
随机为您推荐
热门文章
版权声明:本站资源均来自互联网,如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

Copyright © 2016 Powered by Oracle创建表和索引,益强智未来  滇ICP备2023006006号-17sitemap

回顶部