题解 | 找出所有员工当前薪水salary情况
#请你找出所有员工具体的薪水salary情况,对于相同的薪水只显示一次,并按照逆序显示 #方法一:使用distinct去重(一般用于数据量相对较少) /* select distinct salary from salaries where to_date = '9999-01-01' order by salary desc */ #方法二:使用group by 去重分组(一般用于数据量相对较少) select salary from salaries where to_date = '9999-01-01' group by salary order by salary desc