SQL SERVER – ORDER BY ColumnName vs ORDER BY ColumnNumber
- by pinaldave
I strongly favor ORDER BY ColumnName.
I read one of the blog post where blogger compared the performance of the two SELECT statement and come to conclusion that ColumnNumber has no harm to use it. Let us understand the point made by first that there is no performance difference.
Run following two scripts together:
USE AdventureWorks
GO
--…