mysql :
1.创建字段时添加:
create table test(
id int not null default 0 comment '用户id' );
// 修改字段的命令,可以加注释
alter table test
change column id id int not null default 0 comment '测试表id';
//创建表的时候加
create table test1 (
field_name int comment '字段的注释'
)comment='表的注释';
// 查看表注释
--在生成的SQL语句中看
show create table test1;
--在元数据的表里面看
use information_schema;
select * from TABLES where TABLE_SCHEMA='my_db' and TABLE_NAME='test1' \G
// 查看字段注释
--show
show full columns from test1;
--在元数据的表里面看
select * from COLUMNS where TABLE_SCHEMA='my_db' and TABLE_NAME='test1' \G
2.字段创建好后添加:
alter table test modify name varchar(50) comment '姓名';
达梦数据库
字段创建好后
模式.表.字段
COMMENT ON COLUMN "TEST"."test "."name" IS '姓名';
也可以在达梦的管理工具中使用 右键注释的功能添加