Oracle之表和字段的注釋

2022-08-23 09:27:11 字數 991 閱讀 1394

給表名加上注釋

--

給表名加上注釋的語法結構

--語法結構:comment on table 英文表名 is '中文注釋'

comment on

table dept is

'部門表

';

給字段加上注釋

--

給字段加上注釋的語法結構

--語法結構:comment on column 欄位名 is 『中文注釋』

comment on

column dept.deptno is

'部門編號

使用notepad++

文字編輯工具的小技巧,快速新增注釋

1、雙擊表名,右鍵選擇

describe

(描述)

2、在描述資訊裡,找到

name

這一列,選中當前列所有資料,右鍵選擇

copy comma separated3、去

notepad++

裡面新建文字(

ctrl + n

),貼上(

ctrl + v

)剛才複製的列名,在最後一列加上乙個英文的逗號

4、按快捷鍵(

ctrl + f

),使用替換

replace將「,

」全部替換成「

is '';」5

、將滑鼠移至最後一行的第一列或者第一行的第一列,將「

comment on column 表名.

」複製(

ctrl + c

),按住

alt,同時按住滑鼠左鍵向上或者向下移動,然後貼上剛才複製的內容即可完成!

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 ...

mysql 表注釋和字段注釋

1 建立表的時候寫注釋 create table test1 field name int comment 欄位的注釋 comment 表的注釋 2 修改表的注釋 alter table test1 comment 修改後的表的注釋 3 修改欄位的注釋 alter table test1 modif...

oracle 查詢表字段明細 字段注釋 表注釋

查詢表字段明細 select column name,data type,data length,data precision data scale from all tab columns where table name tablename 字段注釋 select from user col c...