作为程序员一定要保持良好的睡眠,才能好编程

Mysql数据库表的增删改以及数据表更名

发布时间:2016-06-14

新建表

create table user(

    id int(4) auto_increment primary key comment 'ID',

    username varchar(50) not null default '' comment '用户名'

);


新增列

alter table user add age int(3)  default 0 comment '年龄' after `username`;


修改列

ALTER  TABLE  `web_student`  CHANGE  `age`  `age` INT( 2  )  NULL DEFAULT  '0' COMMENT  '//年龄'


修改表引擎:

ALTER  TABLE  `web_student` ENGINE  = InnoDB