plsql 異常和oracle 增刪改列

2022-08-02 02:36:15 字數 606 閱讀 4121

tag:oracle修改表;sql增加列;sql刪除列;sql修改列

1.增加列

alter table table_name add( column datatype [default expr][,column datatype...]);

例如:sql>alter table emp01 add eno number(4);

2.修改列定義

例如:sql>alter table emp01 modify job varchar2(15)

2 default 'clerk'

3.刪除列

例如:sql> alter table emp01 drop column dno;

4.修改列名

例如:sql>alter table emp01 rename column eno to empno;

5.修改表名

例如:sql>rename emp01 to employee;

6.增加注釋

例如:sql>comment on table employee is '存放雇員資訊';

sql>comment on table employee.name is '描述雇員姓名';

Oracle筆記 七 PL SQL 異常處理

異常處理declaresnum number 0 beginsnum 5 snum dbms output.put line snum exceptionwhen others thendbms output.put line is error end 自定義異常declareex custom i...

pl sql異常處理

丟擲異常 oracle有三種型別的異常錯誤 1 預定義 predefined 異常 oracle預定義的異常情況大約有24個。對這種異常情況的處理,無需在程式中定義,由oracle自動將其引發。2 非預定義 predefined 異常 即其他標準的oracle錯誤。對這種異常情況的處理,需要使用者在...

PLSQL 異常處理

1.異常塊begin pl sql塊 exception when no data found then 沒有找到資料 響應命令 when too many rows then 返回多行,隱式游標每次只能檢索一行資料 響應命令 when invalid number then 字元向數字轉換失敗 響...