千家信息网

表注释和字段注释

发表于:2025-01-21 作者:千家信息网编辑
千家信息网最后更新 2025年01月21日,Oracle中的注释例如 comment on column 表名 is ' xxxx'; --表注释comment on column 表名.字段名 is 'xxxxx' --字段注释mysql中的
千家信息网最后更新 2025年01月21日表注释和字段注释

Oracle中的注释

例如 comment on column 表名 is ' xxxx'; --表注释

comment on column 表名.字段名 is 'xxxxx' --字段注释

mysql中的注释

--创建表的时加注释

CREATE TABLE zy.student_info (
NAME VARCHAR(20) NOT NULL COMMENT '学生名字',
kecheng VARCHAR(20) NOT NULL,
fenshu INT (10)
) ENGINE=INNODB DEFAULT CHARSET=utf8 ;


修改表的注释
alter table test1 comment '修改后的表的注释';


查看字段注释

show full columns from 表名

0