G-3180
🆓Warning
Always specify column names instead of positional references in ORDER BY clauses.
Reason
If you change your select
list afterwards the order by
will still work but order your rows differently, when not changing the positional number. Furthermore, it is not comfortable to the readers of the code, if they have to count the columns in the select
list to know the way the result is ordered.
Example
Non-Compliant Example
select upper(first_name) ,last_name ,salary ,hire_date from employees order by 4,1,3;
Issues
Line | Column | Message |
---|---|---|
6 | 15 | |
6 | 13 | |
6 | 11 |
★★★★★
Compliant Solution -
select upper(first_name) as first_name ,last_name ,salary ,hire_date from employees order by hire_date ,first_name ,salary;
References
- same as Trivadis G-3180
- same as plsql:OrderByColumnNumberCheck
- similar to SQLFluff ambiguous.column_references
The scope of ambiguous.column_references is ORDER BY and GROUP BY, forcing either position numbers or column names.