首页 > 数据库技术 > 详细

码字定式之SQL(4)

时间:2014-11-27 12:18:44      阅读:268      评论:0      收藏:0      [点我收藏+]
一些子查询
  1. select empno, ename from emp where mgr in
  2. (select empno from emp where job=‘MANAGER‘);
  3. select * from dept where deptno not in (select distinct deptno from emp);
  4. select * from dept where deptno not in (select deptno from emp);
  5. select empno, ename, sal from emp where mgr=
  6. (select empno from emp where ename=‘SCOTT‘);
  7. select * from emp where sal > 1.4*
  8. (select avg(sal) from emp);
  1. insert into dept(deptno, dname, loc) select 50, ‘TRAINING‘, ‘PEKING‘ from dual;
  2. update emp set sal=sal*1.2 where exists (select 1 from dept where deptno=emp.deptno and loc=‘DALLAS‘);
在写一条孔乙己式样的sql:
update emp set sal=sal*1.2 where exists (select avg(sal) from dept);

简单的层次查询
–-查询7788号雇员的下属和下属的下属……
select level, t.* from emp t start with empno=7788 connect by prior empno=mgr;
–-查询7788号雇员的的上司和上司的上司……
select level, t.* from emp t start with empno=7788 connect by empno=prior mgr;   




码字定式之SQL(4)

原文:http://www.cnblogs.com/mahun/p/4125952.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!