使用comment on,举个例子:
create table EMP
(
empid NUMBER
);
comment on table EMP
is '员工信息'; --添加表描述
comment on column EMP.empid
is '员工编号'; --添加列描述
使用comment on,举个例子:
create table EMP
(
empid NUMBER
);
comment on table EMP
is '员工信息'; --添加表描述
comment on column EMP.empid
is '员工编号'; --添加列描述