select
distinct salary 
from salaries
order by salary desc

本题是先对单列salary进行降序排序;
然后对单列salary进行去重,注意使用distinct只能对单列去重,且只能用在select后面。