查询语句的执行顺序:
select ename as name from scott.emp emp where emp.job=‘ CLERK‘ order by name
1、先执行from 确定数据来自哪里
2、再执行where 条件 判断符合条件的数据,可以使用表scoot.emp 的别名emp
3、执行select 查询 查询数据
4、最后执行 order by 对查出来的数据排序,所以order by后可以使用字段eame的别名name
原文地址:http://blog.51cto.com/13511983/2094676
时间: 2024-11-25 13:49:07