Blogger Information
Blog 18
fans 1
comment 0
visits 13039
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
创建数据表及数据库的增删改查-九期线上班(补作业)
皮皮的博客
Original
949 people have browsed it

一、创建数据表

1575206779342247.png

1575206810908795.png

1575207051956886.png


二、数据库增删改查

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';


1575330869960513.jpg



Correcting teacher:天蓬老师天蓬老师

Correction status:qualified

Teacher's comments:得加把劲了
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments