-
break on deptno skip 2 在deptno 上面不重复显示,并不同的deptno之间空两行查看全部
-
select deptno,job,sum(sal) from emp group by deptno ,job; select deptno ,sum(sal) form emp group by deptno; select sum(sal) from emp; == select deptno,job,sum(sal) from emp group by rollup(deptno,job);查看全部
-
给上面出现过的后面增加语句 a a后面要加两个或多个空格,因为a是直接加,如果不加空格,则后面的语句会和上面的语句没有间隙查看全部
-
having 是在选出来的结果集上面进行筛选 where 是在选之前就进行筛选 having 中可以使用分组函数,例如avg(),sum()等等 where 中是无法这样使用的 另外where的位置和having 在语句中的位置也不一样,where在前,having在后查看全部
-
where子句中不能使用组函数,having后可以使用;当where和having可以通用的情况下,优先使用where,优化,提高效率。查看全部
-
去除重复dist查看全部
-
单行子查询中的null值问题查看全部
-
非法使用单行子查询。查看全部
-
select c.ci_id ci_id,wm_concat(s.stu_name) stu_name from pm_ci c, pm_stu s group by c.ci_id having instr(s.stu_ids,c.stu_id)>0;查看全部
-
行号的注意问题。查看全部
-
子查询的意思查看全部
-
子查询注意的10个问题:查看全部
-
右外链接在等号的左边,左外链接在等号的右边。查看全部
-
左外链接在等号的左边,右外链接在等号的右边。查看全部
-
外链接。查看全部
举报
0/150
提交
取消