create table testemp(
id varchar2(50) default sys_guid(),
deptno varchar2(20) ,--部門編碼
ename varchar2(20),--人名
sal number(10)--工資 )
----表名描述
comment on table testemp is '測試專用表';
----字段備注
comment on column testemp.deptno is '部門編碼';
comment on column testemp.ename is '人名';
comment on column testemp.sal is '工資';