赞
踩
create table 数据表的名字(字段 类型 约束[,字段 类型 约束]);
create table student(
id int unsigned auto_increment primary key not null,
name varchar(30) not null,
age tinyint unsigned default 0,
weight decimal(4,2),
gender enum("男","女","保密","中") default "保密"
);
alter table 表名 add 列名 类型;
添加birthday
alter table student add birthday datetime;
alter table 表名 change 原名 新名 类型及约束;
birthday改为birth 添加约束not null
alter table students change b
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。