1、distinct关键字:把查询结果去除重复记录注意:原表数据不会被修改,只是查询结果去重。
select distinct job from emp;
2、distinct只能出现在所有字段的最前方。
distinct出现在job,deptno两个字段之前,表示两个字段联合起来去重。
select distinct job,deptno from emp;
3、统计一下工作岗位的数量? select count(distinct job) from emp;
1、distinct关键字:把查询结果去除重复记录注意:原表数据不会被修改,只是查询结果去重。
select distinct job from emp;
2、distinct只能出现在所有字段的最前方。
distinct出现在job,deptno两个字段之前,表示两个字段联合起来去重。
select distinct job,deptno from emp;
3、统计一下工作岗位的数量? select count(distinct job) from emp;