程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle數據庫基礎 >> Oracle創建表和索引

Oracle創建表和索引

編輯:Oracle數據庫基礎

Oracle創建表和索引的語句寫法是比較基礎的知識,下面就為您詳細介紹Oracle創建表和索引的方法,希望對您學習Oracle創建表方面能有所幫助。

Oracle創建表

  1. create table tablename  
  2. (  
  3. f1 NUMBER(10) not null,  
  4. f2 NUMBER(10) null ,  
  5. f3 NUMBER(3) defalut 0,  
  6. pt number(3) not null ,  
  7. constraint PK_tablename primary key (f1)  
  8. using index  
  9. tablespace ts_name  
  10. storage  
  11. (  
  12. initial 1m  
  13. next 1m  
  14. pctincrease 0  
  15. )  
  16. )  
  17. pctfree 10  
  18. tablespace ts_name  
  19. storage  
  20. (  
  21. initial 1m  
  22. next 1m  
  23. pctincrease 0  
  24. )  
  25. partition by range(pt)  
  26. (partition part000 values less than (1) tablespace ts_name,  
  27. partition part001 values less than (2) tablespace ts_name,  
  28. )  

創建索引

  1. create index i_tablename1 on tablename(f2)  
  2. tablespace ts_name  
  3. storage  
  4. (  
  5. initial 500k  
  6. next 500k  
  7. pctincrease 0  
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved