程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle數據庫基礎 >> Oracle常用的命令中Oracl的相關數據類型列舉

Oracle常用的命令中Oracl的相關數據類型列舉

編輯:Oracle數據庫基礎

以下的文章主要是介紹Oracle常用的命令中Oracl的相關數據類型,本文也涉及到一些相關的實際應用代碼,以代碼的方式來引出Oracle常用的命令中Oracl的相關數據類型,以下就是文章的具體介紹。

  1. Create table test1(name char(10),sex char(1));  
  2. Insert into test1 values(‘tomcatt北京’,’f’);  
  3. Create table test2(name nchar(10),sex nchar(1));  
  4. Insert into test2 values(‘tomcatt北京’,’男’);  

刪除表 drop table 表名;

  1. Create table test3(name varchar2(10),sex varchar2(2));  
  2. Insert into test3 values(‘tomcatt北京’,’f’);  

插入值過大

  1. Insert into test3 values(‘tomcat北京’,’f’);  
  2. Create table test4(name varchar2(10),age number(3),salary number(8,2));  
  3. Create table test5(name varchar2(10),birth date);  
  4. Insert into test5 values(‘Tom’,’28-2月-08’);  
  5. Insert into test5 values(‘Allen’,sysdate);  
  6. DDL:  

創建表

  1. create table scott.test6(  
  2. eid number(10),  
  3. name varchar2(20),  
  4. hiredate date default sysdate,  
  5. salary number(8,2) default 0  
  6. )  

插入數據時若沒有指定hiredate,salary的話則會取默認值

Oracle常用命令數據字典:

Dba-所有方案包含的對象信息

All-用戶可以訪問的對象信息

User-用戶方案的對象信息

  1. Select * from user_tables;  
  2. Select * from all_tables;  

約束:

域完整性約束:not null check

實體完整性約束:unique primary key

參照完整性約束:foreign key

視圖:

  1. Create or replace vIEw v1(eid,name,salary) as select 
    empno,ename,sal from emp where deptno = 30

序列:sequence

  1. Create sequence mysequence1 increment by 1 start 
    with 1 nomaxvalue nocycle;  
  2. Insert into test values(mysequence1.nextval,’tom’);  
  3. Create sequence student_sequence start with 1 increment by 1;  
  4. Insert into student values(student_sequence.nextval,’john’);  

Oracle常用命令表間數據拷貝:

  1. Insert into dept1(id,name) select deptno,dname from dept; 

實例(創建表 ID字段自增):

  1. --create table test2(id char(10) primary key not null, name char(10));  
  2. --create sequence test2_sequence increment by 1 start with 1 nomaxvalue nocycle;  
  3. --insert into test2 values(test2_sequence.nextval,'john');  
  4. --insert into test2 values(test2_sequence.nextval,'allen');  
  5. --insert into test2 values(test2_sequence.nextval,'candy');  
  6. --insert into test2 values(test2_sequence.nextval,'aaaa');  
  7. --insert into test2 values(test2_sequence.nextval,'bbbbb');  
  8. --insert into test2 values(test2_sequence.nextval,'cccccc');  
  9. --insert into test2 values(test2_sequence.nextval,'ddddd');  
  10. --insert into test2 values(test2_sequence.nextval,'eeeee');  
  11. --insert into test2 values(test2_sequence.nextval,'ggggg');  
  12. --insert into test2 values(test2_sequence.nextval,'jowwwwhn');  
  13. --insert into test2 values(test2_sequence.nextval,'aaaadd');  
  14. --insert into test2 values(test2_sequence.nextval,'ggghhh');  
  15. --insert into test2 values(test2_sequence.nextval,'eeettt');  
  16. --insert into test2 values(test2_sequence.nextval,'wwwttt');  
  17. select * from test2;  

查看表結構

EDITDATA 表名;

修改表字段:

Alter table 表名 modify(字段名 類型 約束);

  1. alter table test modify (addd varchar2(10) null); 

alter table 表名 add(字段名 類型 約束);

  1. alter table test add(age varchar2(5)); 
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved