表注释和字段注释

时间:2023-01-31 14:54:35

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  表名

表注释和字段注释