Pawan
Pawan

Reputation: 605

Sort results by column name while seeing structure of a table

While seeing the structure of a table in Sql Server 2008 using the alt+F1 command, in the results window the order of columns in same as that at the time of creation of the table. Cant we change to order the results alphabetically?

Upvotes: 0

Views: 166

Answers (1)

Adriaan Stander
Adriaan Stander

Reputation: 166406

You could have a look at Information Schema Views (Transact-SQL)

You might also want to have a look at this helpfull article

SQL Server Troubleshooting Tips and Tricks

Upvotes: 1

Related Questions