MySql创建带解释的表及给表和字段加注释的实现代码
程序员文章站
2023-12-15 20:18:16
1 创建带解释的表
create table groups(
gid int primary key auto_increment commen...
1 创建带解释的表
create table groups( gid int primary key auto_increment comment '设置主键自增', gname varchar(200) comment '列注释' ) comment='表注释';
2 修改现有列,加上解释
alter table test_data modify column test_desc int comment 'xxxx';
3 修改现有表,加上解释
alter table test_data comment='存放测试用例相关数据';
4查看整个表的结构
show create table test_data; #查看表的注释 select table_name,table_comment from information_schema.tables where table_schema = 'test' and table_name ='test_data';
5 查看列的解释
show full columns from test_data; select column_name, column_comment from information_schema.columns where table_schema ='test' and table_name = 'test_data';
以上所述是小编给大家介绍的mysql创建带解释的表及给表和字段加注释的实现代码,希望对大家有所帮助