码迷,mamicode.com
首页 > 数据库 > 详细

码字定式之SQL(4)

时间:2014-11-27 12:18:58      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:style   http   io   ar   color   os   sp   on   div   

一些子查询
  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)

标签:style   http   io   ar   color   os   sp   on   div   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!