Link to home
Start Free TrialLog in
Avatar of monarchit
monarchit

asked on

SQL Tables

Hi,

When i open a table in SQL studio. How can i sort the information that is displayed. Example, i want to sort the tables by category?
Avatar of Aneesh
Aneesh
Flag of Canada image

What exactly you mean by category ?
i dont really think there is an option to sort in the ssms. if you need some sort of sorting, you can run a query like this

SELECT *
FROM INFORMATION_SCHEMA.TABLES
ORDER BY Table_Name
Use the ORDER BY statement.

Lee
ASKER CERTIFIED SOLUTION
Avatar of monarchit
monarchit

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial