Oracle数据库中 comment (注释) 怎么修改34
发布网友
发布时间:2023-10-24 05:52
我来回答
共4个回答
热心网友
时间:2024-12-12 14:16
Oracle数据库中 comment (注释) 修改方法:分两种情况,一种是表注释,一种是字段注释。对表或表字段增加或修改注释内容的方法都是一样的。
一、表注释修改语法:comment on table 表名 is '注释内容';
二、字段注释修改语法:comment on column 表名.字段名 is '注释内容'。
如:
1、创建表:
CREATE TABLE t1(id varchar2(32) primary key,name VARCHAR2(8) NOT NULL,age number);
2、添加表注释:
Comment on table t1 is '个人信息';
3、添加字段注释:
comment on column t1.id is 'id';
comment on column t1.nameis '姓名';
comment on column t1.age is '年龄';
热心网友
时间:2024-12-12 14:17
会直接把原来的覆盖
comment on table mo_todo is '随便换个东西就行';
热心网友
时间:2024-12-12 14:17
pl/slq 工具登录进去,选择表右键“编辑”,直接修改注释.
命令行的形式就不推荐了,建议装个可视化工具,方便直接本身也不大...
热心网友
时间:2024-12-12 14:18
可以直接执行comment on table mo_todo is 'other';
会覆盖掉原来的注释的。