一、创建数据表
二、数据库增删改查
1、新增数据
insert into `users` (`user`,`password`,`email`,`youname`,`address`,`content`,`addtime`,`status`) value ('zhenbo','123456','887995@qq.com','皮皮','河北省邢台市','详细介绍','time()',0);
2、删除ID为1的数据
delete from `users` where `id`=1;
3、修改ID为1的数据
update `users` set `youname`='赵振波',`content`='新的详细介绍' where `id`=1;
4、查询用户名为zhenbo的数据
select * from `users` where `user`='zhenbo';