1、创建数据表
contacts:数据表名
auto_increament:自动增长
primary key:主键
engine=InnoDB default charset=utf8; 默认字符集utf8,不写就默认utf8
对数据表的操作:
alter table 数据表名 add sex varchar(1); //添加字段sex,类型为varchar(1),这里varchar(1)可能表示sex字段内容只占一个字符
alter table 数据表名 modify sex int; //修改sex字段内容占一个int大小
alter table 数据表名 drop column sex; //删除sex字段
drop table 数据表名; //删除数据表
案例:
id不为空,自动增长,不需要在给1,2,3…
sex字段默认为一个字节int
对这个表插入数据:
insert into contacts(name, sex, phone) values(“huanghua”, 1, “1234567”); //插入一条数据
insert into contacts(name, sex, phone) values(“hua”, 1, “123”), (“huang”, 1, “321”); //插入多条数据
sex字段已经默认为1,这里可以不用在赋值
insert into contacts(name, phone) values(“huanghua”, “1234567”);
修改表中的数据:
update contacts set sex = 2 where id = 2; //把表中id=2的那一条数据中的sex改为2,不加where id = 2会把所有数据中的sex改为2
update contacts set sex = 3, phone = “1234” where id = 2; //修改一条数据中的多个字段
删除表中的数据:
delete from contacts where id = 3; //删除表中id=3的那条字段
delete from contactst; // 删除表中所有字段,只剩空表