Blogger Information
Blog 54
fans 4
comment 1
visits 54819
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
增删改查语句和pdo操作
神仙不在的博客
Original
656 people have browsed it

实例

//增加
insert into stu set name='zhangsan',age=14,gender='nan';
insert into stu ( gender,age,name)values('nv',25,'gouzi');
//更新
update stu set gender='man' where name='gouzi';
//删去
delete from stu where stu_id=2;
//查询
select * from stu;
//查询 限制只查前3条
select * from stu limit 3
//查询 限制只查后3条
select * from stu limit 3 
//查询 按stu_id 倒序排序
select * from stu order by stu_id desc

运行实例 »

点击 "运行实例" 按钮查看在线实例


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
Author's latest blog post