-
提示如下查看全部
-
要求的结果查看全部
-
已知表结构查看全部
-
层次查询查看全部
-
select count(distinct deptno) from dept查看全部
-
分组函数 行转列 vm_concat查看全部
-
wm_concat 行转列查看全部
-
在分组函数查询语句中进行排序,可以用order by后跟 分组函数,或跟别名,或用列数字 列:select a,avg(x) 组函数 from table group by a order by 2 或(avg(x))或 组函数 sqlplus的另一个小技能: a命令(单词append的缩写,表示追加) 当我们想在一个语句之后加上一个语句时,就好像图中我想在最后加上一个desc,以便降序排列 那么我们可以直接在输入界面输入 a desc(注意必须得是两个空格或两个空格以上) 然后输入/再按回车执行就可以了查看全部
-
rownum只能用< or <= 不能用 > 或者 >=查看全部
-
使用not in 要考虑多行子查询是否有空值(也就是null值)查看全部
-
ili查看全部
-
select e.empno,e.ename,e.sal,d.avgsal from emp e,(select deptno avg(sal) avgal from emp group by deptno) d wherwe e.deptno=d.deptno and e.sal>d.avgsal查看全部
-
子查询分为两种:单行子查询和多行子查询。查看全部
-
行号(rownum)只能使用<,<=;不能使用>,>=查看全部
-
可以使用子查询的位置:查看全部
举报
0/150
提交
取消