注釋用於對程式**的解釋說明,它能夠增強程式的可讀性,是程式易於理解。
單行注釋:
用「--」,後面跟上注釋的內容
declarenum_sal
number; --
宣告乙個數字型別的變數
var_name varchar(20); --
宣告乙個字串型別的變數
begin
select ename,sal into var_name,num_sal from emp where empno=
7369; --
檢索指定的值並儲存到變數
dbms_output.put_line(var_name||
'的工資是
'||num_sal);--
輸出變數中的值
end;
多行注釋:
多行注釋用/*開頭,用*/結尾,中間寫上注釋的內容
declarenum_sal
number; /*
宣告乙個數字型別的變數
*/var_name
varchar(20); /*
宣告乙個字串型別的變數
*/begin
select ename,sal into var_name,num_sal from emp where empno=
7369; /*
檢索指定的值並儲存到變數
*/dbms_output.put_line(var_name||'
的工資是
'||num_sal);/*
輸出變數中的值
*/end;
以上兩種注釋效果等同,輸出結果為:
smith的工資是800
oracle中查詢表注釋和字段注釋
查詢表注釋 select from user tab comments a where a.table name 查詢字段注釋 查詢字段詳細資訊 select from all tab columns a where a.table name 查詢字段注釋 select from user col ...
ORACLE中給表 列增加注釋以及讀取注釋
在oracle中給表 列增加注釋以及讀取注釋 1 給表填加注釋 sql comment on table 表名 is 表注釋 2 給列加注釋 sql comment on column 表.列 is 列注釋 3 讀取表注釋 sql select from user tab comments wher...
Oracle 修改表注釋
修改原欄位名name為name tmp alter table suit ext info rename column inve peri to inve peri tmp 增加乙個和原欄位名同名的字段name alter table suit ext info add inve peri varc...