老师的确没讲错,any是指这个集合当中所有成员的某一个,故只需要大于这个集合中的一个值(最小的那个值)就满足条件了,如果是要大于这个集合的所有值才需要大于最大的那个值才行。。。。大家自己好好想想
2016-11-27
老师讲的不错
select nvl(to_char(deptno),'汇总') ,sum(sal) from emp group by cube(deptno) order by deptno nulls last;
select nvl(to_char(deptno),'汇总') ,sum(sal) from emp group by cube(deptno) order by deptno nulls last;
2016-11-27
order by 表达式:列,别名,序号 [asc /desc [nulls first/last] ]
命令行:a 空格 desc
命令行:host cls 等价于 clear scr
老师讲得不错,给力
命令行:a 空格 desc
命令行:host cls 等价于 clear scr
老师讲得不错,给力
2016-11-27
最后一题我好像做出来了
select ci_id,wm_concat(stu_name)
from pm_ci a,pm_stu b
where instr(a.stu_ids,b.stu_id)>0
group by ci_id
虽然可以得出和要求一样的结果
但是我也是蒙出来的
自己都看不懂
select ci_id,wm_concat(stu_name)
from pm_ci a,pm_stu b
where instr(a.stu_ids,b.stu_id)>0
group by ci_id
虽然可以得出和要求一样的结果
但是我也是蒙出来的
自己都看不懂
2016-11-25