数据库表单之增删改查
--创建表单 create table student ( `id` int(32) unsigned auto_increment, `username` varchar(20) not null, `address` varchar(40) default 'null', `create_date`DATE, `sex` int(20) not null, primary key (`id`) )ENGINE=INNODB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8; --添加表单字段 ALTER TABLE student ADD phone int(20) not null; --添加字段 alter table student add remark varchar(30) default '管理员' not null; --添加多个字段 alter table student add age int(20), add city varchar(30);
上面是增加表单,下面是改表单字段名跟删除
--修改表单字段,将create_date原值,新值udate_at --alter table 表名称 change 旧字段名称 新字段名称 字段类型 [是否允许非空]; alter table student change create_date udate_at varchar(20); --删除表单字段 ALTER TABLE student DROP udate_at;