前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布

sql3

作者头像
py3study
发布2020-01-09 16:09:22
4230
发布2020-01-09 16:09:22
举报
文章被收录于专栏:python3

SCOTT>select ename,sal   2  from emp e,   3  (select deptno,avg(sal) avg_sal from emp group by deptno) s   4  where e.deptno=s.deptno and e.sal>s.avg_sal; ENAME          SAL ---------- ---------- BLAKE         2850 ALLEN         1600 FORD         3000 SCOTT         3000 JONES         2975 KING         5000 6 rows selected. SCOTT>select ename,sal from (select rownum no,e.* from emp e where rownum<=8) where no >=5 order by sal desc; ENAME          SAL ---------- ---------- SCOTT         3000 BLAKE         2850 CLARK         2450 MARTIN         1250 SCOTT>select * from (select * from emp order by sal desc) where rownum<=3;      EMPNO ENAME      JOB           MGR HIREDATE        SAL       COMM     DEPTNO ---------- ---------- --------- ---------- --------- ---------- ---------- ----------       7839 KING       PRESIDENT        17-NOV-81       5000            10       7788 SCOTT      ANALYST          7566 19-APR-87       3000            20       7902 FORD       ANALYST          7566 03-DEC-81       3000            20       SCOTT>select * from   2  (select row_number() over(partition by deptno order by sal desc) no,ename,sal,deptno   3  from emp)   4  where no<=2   5  ;     NO ENAME         SAL     DEPTNO ---------- ---------- ---------- ----------      1 KING         5000     10      2 CLARK        2450     10      1 SCOTT        3000     20      2 FORD         3000     20      1 BLAKE        2850     30      2 ALLEN        1600     30 6 rows selected.

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2019/08/25 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档