id varchar2(32) primary key,
name VARCHAR2(32) ,
age VARCHAR2(32)
)
COMMENT ON table t1 IS '个人信息'
添加字段注释:
comment on column t1.id is 'id'
comment on column t1.name is '姓名'
comment on column t1.age is '年龄'
comment on column 表名.列名 is '1-使用;2-未使用'然后你用pl sql developer
在sql窗口 执行 select * from 表,把光标移动到列上,
看看状态栏是不是你要的效果。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)