There is a functionality in Oracle which permits to use a number in parentheses instead of naming a field to order a result. Example : this query order the result by the "id" column :
select name, id
from table
order by (2)
What is the name of this functionality and where can I can read documentation on it ?