当select子句使用distinct关键字时,可能会与order by子句冲突,从而产生如下错误
错误:ORA-01791: not a SELECTed expression
根据sql语句的执行顺序,distinct的执行顺序优先于order by,因此distinct对select的字段去重后,order by只能在distinct后返回的结果集进行排序
因此order by 后的字段如果不在distinct后的结果集中,就会报错
解决方案:1) order by子句的字段要只包含distinct后的字段
2) 先order by,然后再distinct