-
使用子查询和dual伪表按照年份统计员工被雇佣的日期查看全部
-
按照年份统计员工的雇佣日期 decode函数查看全部
-
员工入职年份查看全部
-
sql语句: select c.ci_id,wm_concat(s.stu_name) from pm_ci c,pm_stu s where instr(c.stu_ids,s.stu_id)<>0 group by c.CI_ID;查看全部
-
综合练习:查看全部
-
案例三:使用子查询的方式实现查看全部
-
案例三:按员工的入职日期分组显示(使用函数方式)查看全部
-
查看sql语句的执行计划:查看全部
-
案例二: --查询本部门薪水大于平均工资的员工;(使用表连接查询) select e.empno,e.ename,e.sal,s.deptno,s.avgsal from emp e,(select deptno,avg(sal) avgsal from emp group by deptno) s where e.deptno=s.deptno and e.sal>s.avgsal查看全部
-
分页查询: eg: select r ,ename ,sal from (select rownum r,ename,sal from (select ename,sal from emp order by sal desc) where rownum <=8 ) where r>=5; select r ,ename ,sal from (select rownum r,ename,sal from (select ename,sal from emp order by sal desc) where rownum <=@pagesize*@pageindex ) where r>=(@pageindex-1)*@pagesize+1;查看全部
-
案例一:查看全部
-
多行子查询的空值问题: in相当于 =ANY not in 相当于 <>ALL(其中如果子查询返回值有NULL,则<>NULL当然没有结果)查看全部
-
多行子查询——ANY查看全部
-
相关子查询: 查询各部门平均工资以及大于平均工资的员工查看全部
-
使用rownum和子查询排序得到工资最高的前三个员工查看全部
举报
0/150
提交
取消