select的本质

select [all/distinct] 目标列表达式

from 视图/表名 as 别名

where 条件表达式

group by 分组

having 条件表达式

order by 列名 asc/desc



注:

①from是指定数据源(单数据源/多数据源,由连接条件组成)

②where是面向行的操作

③select 是面向列的操作

通过select和where选择合适的数据 

④group by 是分组,having对分组后的数据进行过滤,where对分组前的数据进行过滤

⑤order by 降序desc     升序asc

你可能感兴趣的:(select的本质)