-
在select列表中所有未包含在组函数中的列均要包含在group by中查看全部
-
select dept,job,sum(sal) from emp group by dept,job order by dept;查看全部
-
分组函数会自动忽略空值:select count(*),count(comm) from emp; nvl函数使分组函数无法忽略空值:select count(*),count(nvl(comm,0)) from emp;查看全部
-
host cls 清屏 select avg(salary),sum(salary) from employees; select min(salary),max(salary),sum(salary) from employees; select count(*) from employees; select count(distinct department_id) from departments;以指定字段进行去重并统计数量查看全部
-
常用分组函数: avg:平均数 sum:求和 min:最小值 max:最大值 count:组中包含数据的个数 wm_concat:行转列查看全部
-
SQL读取文件用@?ed 是退出?查看全部
-
concat(A,B)拼接字符串查看全部
-
分组之后的学习查看全部
-
start with (表示层次连接时你是从哪个节点开始查询 , 即起始位置)查看全部
-
connect by (层次连接的关键字) prior empno(表示上一层的员工号) = mgr (上级编号)查看全部
-
常用的分组函数 sum查看全部
-
select A.ci_id CI_ID,wm_concat(B.stu_name) STU_NAME <br> from pm_ci A, pm_stu B <br> where instr(A.stu_ids,B.stu_id) >0<br> group by A.ci_id;查看全部
-
rownum 只能使用< <= 不能使用 > >=查看全部
-
子查询获取查看全部
-
统计每年入职人数查看全部
举报
0/150
提交
取消