基本查询语句:select 字段 from 数据表名 where 条件 group by 结果分组
having 查询时满足的第二条件 order by 排序 limit 限定输出结果
带IN关键字的查询
select * from 表名 where 条件 [not] in (字段值)
带between and 的范围查询
select * from 表名 where 条件 between 取值 1 and 取值2
带Like的查询
select * from 表名 where 条件 like ' ';
用is null关键字查询空值
select * from 表名 where 条件 is null;
去重
select distinct 字段 from 表名