oracle常见查询语句总结select sum(字段) from 表名 where 条件 group by 字段 例子1. select [distinct] *| [as] [列别名],列名称 [as] [列别名]from 表名称 [表别名] [where 条件(s)] [order by 排序的字段 | 列索引号 asc|desc,排序的字段2 asc|desc ...]...; 执行顺序: 1、先执行from子句,确定要检索数据的来源 2、执行where子句,使用限定符对数据进行过滤 3、执行select子句,确定要检索出的数据列 4、执行order by子句排序 distinc