oracle中创建表时添加注释

时间:2023-11-26 22:41:50

CREATE TABLE t1(
id varchar2(32) primary key,
name VARCHAR2(32) ,
age VARCHAR2(32)
)
;comment on column t1.id is 'id';
comment on column t1.name is '姓名';
comment on column t1.age is '年龄';

相关文章