DQL基础
select
from
where
空值
is null
列别名
列名 别名
列名 as 别名
消除重复
select distinct
特殊运算
between 下限 and 上限
like ‘%%’ _占一个字符 %代表零或任意个字符
in ( , )
is null
算数运算
±*/
逻辑运算
and or not
结果集运算
order by desc降序 asc升序 默认是升序
limit start,length 用来取前几条数据,或者分页