MySQL查询以及修改表、表字段备注信息

在开发中,我们可能经常碰到这种问题,随着需求的变更,或者设计阶段的失误,表字段的长度太小,字段的备注信息需要完善。所以,就要更改表结构或者其它一些信息了。

 

话不多说,步入正题。

 

创建测试表:

 

 
  1. create table student(

  2. id int(11) primary key,

  3. name varchar(50) comment '姓名',

  4. age int(4) comment '年龄',

  5. address varchar(50) comment '住址'

  6. );


修改表备注信息:

 

 

alter table student comment '学生信息';


修改表字段长度:

 

 

alter table student modify column address varchar(100);

这里需要注意的是:一般都是把字段长度调的更大,若是调小可能会影响现有数据。

 


修改表字段备注信息:

 

alter table student modify column address varchar(50) comment '家庭住址';

 

 

给表增加新的字段:

 

alter table student add sex varchar(2) comment '性别';

 

 

在指定的列后面增加新的列

 

alter table student add address varchar(200) comment '家庭住址' after sex;

 

删除表字段:

 

alter table student drop column sex;

 

 

查看表的备注:

 

use information_schema;

information_schema是mysql数据库中的系统库,里面存放了,用户所创建的数据库和表的信息

 

 

 
  1. select *

  2. from tables

  3. where table_schema = 'linxiaomi'(db name)

  4. and table_name = 'student';

 

 

查看表字段的备注:

 

 
  1. use linxiaomi(db name);

  2. show full columns from student(table name);


 

 

####################################

转自:https://blog.csdn.net/oxinliang12/article/details/53636406

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值