1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
| 1.增加数据(insert)3种方式 1.1 insert into 表名 values(值1,值2,...)(很少用) 1.2 insert into 表名(字段1,字段2...) values(值1,值2,....);(较常用) 1.3 insert into 表名(字段1,字段2...) values(值1,值2,....),(值1,值2,....),(值1,值2,....); 2.删除数据(delete) delete from 表名 where 条件 注意:where 条件必须加,否则数据会被全部删除 3.更新数据(update) update 表名 set字段1 = 值1, 字段2 = 值2 where 条件 4.查询数据(select) 4.1 查询表中的所有数据 select * from 表名 4.2 指定数据查询 select 字段 from 表名 根据条件查询出来的数据 select 字段 from 表名 where 条件 (最常用的) where 条件后面跟的条件 关系:>,<,>=,<=,!= 逻辑:or, and 区间:id between 4 and 6 ;闭区间,包含边界 5.排序 select 字段 from 表 order by 字段 排序关键词(desc | asc) 排序关键词 desc 降序 asc 升序(默认) 5.1 通过字段来排序 例如 :select * from star orser by money desc, age asc; 5.2 多字段排序 select 字段 from 表 order by 字段1 desc |asc,...字段n desc| asc; 6.常用的统计函数 sum,avg,count,max,min 只分组:select * from 表 group by 字段 例子: select count(sex) as re,sex from star group by sex having re > 3; 分组统计: select count(sex) from star group by sex; 7.分组 select * from 表名 limit 偏移量,数量 说明: 8.1.不写偏移量的话就是默认的为0 8.2.实现分页的时候必须写偏移量 偏移量怎么计算?: limit (n-1)*数量 ,数量
|