5、max,min函数: select max(列名),min(列名) from 表名; 七:查询总结
from 表名
where 条件:
逻辑运算符:and or not
比较运算符:< > <= >= <> =
在....之间:between...and...
in():任意的一个条件成立即可
is null/is not null
模糊匹配:like % _
group by 列:对列进行分组。
having 条件:
逻辑运算符:and or not
比较运算符:< > <= >= <> =
在....之间:between...and...
int(set)
is null/is not null
模糊匹配:like % _
聚合函数(sum,avg,max,min,count)
order by desc(降序)/asc(升序,默认)