Ordinal position notation, AKA ordinals, is column shorthand based on the column order in the list of columns in the SELECT
clause, instead of either the column name or column alias. Commonly supported in the ORDER BY
clause, some databases (MySQL 3.23+, PostgreSQL 8.0+) support the syntax for the GROUP BY
clause as well.
Here's an example of using Ordinals:
GROUP BY 1, 2 ORDER BY 1, 2
It's not good to use because it makes the query brittle - if the column order changes, the ordinals need to be updated or your query won't return what you thought it would. Very likely, you'd get an error when used in the GROUP BY
if the columns at those locations are wrapped within aggregates...
The only benefit I can think of is less data to send over the wire, if you aren't using stored procedures or functions (which make ordinal usage moot, to me anyways). Are there any other benefits I'm missing?
In relational databases, including MySQL, SQL Server, Oracle, and others, the ORDINAL_POSITION refers to a column's location in terms of ordering within a table or query output.
the column ordinal – A number that represents the position of the column in a set of columns. So, if a table has 3 columns, named Name, Address, and Zip, in that order, their ordinals are 0, 1, and 2. the column ordinal. – A number that represents the position of the column in a set of columns.
I'd use it:
There is no upside.
SQL Server only supports in the ORDER BY anyway. Anywhere else it's an expression to be evaluated.
Often times when I'm querying a table with a lot of columns (in ad-hoc-land just for data exploration... I would never code like this for a PROD environment) I do something like this to get fields I care about close together:
select top 1000 Col_1, Col_18, Col_50, Col_117, * from TableWithTonsOfCols order by 1, 4 desc, 3
If I said order by Col_1, Col_117 desc, Col_50
my query would barf because the statement wouldn't know which columns I meant to order by due to the " * " doubling up. Not very common, but still a useful feature.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With