mysql表格查询方法: 查询: 1.简单查询 select * from Info --查所有数据select Code,Name from Info --查指定列的数据select Code as '代号',Name as '姓名' from Info --给列指定别名 2.条件查询 select * from Info where Code='p001'select * from Info where Sex='true' and Nation='n001' --多条件并的关系select
目录 1 where 条件查询 between like not in 2 group by 分组 聚合函数:max min sum avg count 3 having 过滤 4 distinct 去重 5 order by 排序 6 limit 限制结果返回数量 7 正则 8 多表查询 子查询 0 准备代码 1 where 条件查询 准备代码在最下面 在使用MySQL select语句时,可以使用 WHERE 子句来指定查询条件,从 FROM 子句的中间结果中选取适当的数据行,达到数据过滤的
查询每个分组中第N的一条记录 -- 天气表,每天每个地区采集了多条记录的天气信息,但是时间只记录到了天,导致同一个地区同一天出现了多条天气记录 -- 目的:获取所有地区在每天中第N的一条记录 select * from data_weather where `id` in ( select t1.`id` from data_weather t1 left join data_weather t2 on t1.addtime=t2.addtime and t1.areaId=t2.areaId