温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

讨论Oracle 中sql语句的执行顺序

发布时间:2020-06-26 22:59:54 来源:网络 阅读:1132 作者:卡萨丁上 栏目:关系型数据库

查询语句的执行顺序:
select ename as name from scott.emp emp where emp.job=' CLERK' order by name;
select deptno,avg(sal),count() from scott.emp group by deptno order by count() desc;
select job,avg(sal) from scott.emp group by job having avg(sal)>2000;

1、先执行from       确定数据来自哪里
2、再执行where 条件   判断符合条件的数据,可以使用表scoot.emp 的别名emp
3、再执行group by 分组(筛选出行再分组)
4、having 分组过滤  (having必须跟group by 一起出现,没有group by 不能有having,where条件不能出现统计函数分组函数)
5、执行select 查询       查询数据
6、最后执行 order by     对查出来的数据排序,所以order by后可以使用字段eame的别名name
向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI