In SQL Server, we get the table description using below command:
Sp_help TableName
When it displays all column names in a random order. Is there a way If I want to get all column names alphabetically sorted in some order (Descending or Ascending)?
This will help me to have a quick look at the table to see what all columns are present and whether a specific column is present in the table or not.