oracle給表和字段新增注釋。
建立「學生資訊」資料表。
--建立「學生資訊」資料表
create table student_info
( stu_id int, --學號
stu_name varchar2(8), --姓名
email varchar2(20), --郵箱
*** char(2), --性別
age int, --年齡
class_id varchar2(20), --班級編號
regdate date default sysdate --建立期間
);
語法:comment on table 表名 is '表注釋';
--新增表注釋
comment on table student_info is '學生資訊表';
語法:comment on column 表名.欄位名 is '字段注釋';
--新增字段注釋:
comment on column student_info.stu_id is '學號';
comment on column student_info.stu_name is '姓名';
comment on column student_info.email is '郵箱';
comment on column student_info.*** is '性別';
comment on column student_info.age is '年齡';
comment on column student_info.class_id is '班級編號';
comment on column student_info.regdate is '建立期間';
oracle 新增欄位和新增注釋
1 增加乙個字段 增加欄位時,只能排在已有欄位的後面,不能插到已有字段之間 alter table t si addr add chg addr flag number 1,0 alter table 表名 add 欄位名稱 字段型別 2 增加兩個字段 alter table t si addr a...
Sqlserver給表名和列名新增注釋
一 表注釋 1 新增 固定寫法 exec sys.sp addextendedproperty name n ms description level1type n table level0type n schema level0name n dbo 自定義 value n 注釋內容 level1n...
oracle 查詢表名 欄位名 新增注釋
查詢所有表名 select t.table name from user tables t 查詢所有欄位名 select t.column name from user col comments t 查詢指定表欄位名和注釋 select t.column name t.comments from u...