-
报表优化显示查看全部
-
rollup group by的增强查看全部
-
break on deptno skip 2 相同的部门号,只显示1次,不同的部门号,跳过2行查看全部
-
外连接查看全部
-
distinct 去除重复记录 求部门数 select count(distinct deptno) from emp;查看全部
-
常用的分组函数: AVG 求平均值 SUM 求和 MIN 求最小值 MAX 求最大值 COUNT 统计总数 WM_CONCAT 拼接函数查看全部
-
行转列查看全部
-
select c.ci_id CID,wm_concat(s.stu_name) SNAME from pm_ci c,pm_stu s where instr(c.stu_ids,s.stu_id) <> 0 group by c.ci_id;查看全部
-
where 先过滤后分组 having 先分组后过滤 优先使用where查看全部
-
nvl(comm,0):该函数把comm列为空的值转为0查看全部
-
group by的增强查看全部
-
having:先分组,后过滤。 where:先过滤,后分组。 没有使用group by时,两者通用。尽量使用where。查看全部
-
group by语句除了分组列,其他列的信息都需要加到group by语句中查看全部
-
where里边不能有组函数,having可以有查看全部
-
子查询null问题查看全部
举报
0/150
提交
取消