In SQL Management Studio Select the database environment that contains the table that you want to query.
The following command displays all the columns in all the table in thje current database:
select * from information_schema.columns
You will notice that this result set returns usefull data on the table.
To select this information from a specific table in the [...]