SELECT C.COLUMN_ID,[COLUMN NAME]=C.NAME
FROM SYS.COLUMNS C
WHERE OBJECT_NAME(C.OBJECT_ID)='Table Name'
If we want to display the output in Ascending or Descending order we should add the following line at the end of the query above.
ORDER BY C.COLUMN_ID DESC 'for Descending order
ORDER BY C.COLUMN_ID ASC ' for Ascending order which is default settings
OUTPUT OF THE ABOVE QUERY