rules repository

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
LineColumnMessage
615Positional reference in ORDER BY clause.
613Positional reference in ORDER BY clause.
611Positional reference in ORDER BY clause.

Compliant Solution - ★★★★★

select upper(first_name) as first_name
      ,last_name
      ,salary
      ,hire_date
  from employees
 order by hire_date
      ,first_name
      ,salary;

References