create table book(
id int not auto_increment(设置主键自增),
字段名 varchar(50) not null(不为空)default""(默认值为"")
字段名 varchar(50) not null default"",
字段名 varchar(50) not null default"",
字段名 double not null default 0.00,
字段名 text,
字段名 date,
primary key (id),
index 索引名称(数据想设置索引列的名称),(为某个字段创建索引)
)
2、重命名数据表
rename table 原表名 to 新表名
或
alter table 原表名 rename 新表名
3、查看搜有数据表
show tables;
4、删除某张表
drop 表名;
5、查看表结构
desc 表名;
6、把添加列放在某列的后面
alter table 数据表名 add 列名 数据类型 约束 alter 列名;
例如:alter table employee add height int(4) default 170 alter name;
--意思是添加一列int类型的身高字段,默认值为170,放在name字段后面
(若想放在第一列需把"alter 列名"改为"first 列名")
7、更改某列的列名
alter table 表名 change 原列名 新列名 数据类型 约束;
例如:alter table employee change height height1 int(4) default 180;