查
-- 从指定表中查出所有列
select * from 表名称
-- 从指定的表中 查指定的列
select 列名称 from 表名称
-- 查询前五条数据
SELECT * FROM ev_users limit 5;
-- 分页查询
-- 公式 limit(要显示第几页 -1 )* 每页分多少个,每页分多少个
-- limit (page - 1 ) * size ,size
-- 查第五页的10条数据
select * from ev_users limit 40,10 ;
-- 查第三页,每页两个
select * from ev_users limit 4,2 ;
-- 查第六页的10条数据,年纪升序
-- 先整体排序再分页
select * from ev_users oder by age asc limit 50,10 ;
增
-- 向指定的表中,插入几列数据 列和值要对应
insert into 表名称 (列1,列2...) values (值1,值2...) ;
删
-- 删除表中 id为4的用户
delete from 表 where id=4
改
-- 更新 表 的 id=4 的psd和status;where 更新条件;不写会把表所有的数据更新
update 表名称 set password='123aaa' , status=1 where id=4 ;
results.affectedRows 而不是 results.length