Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
Goldmember
Starting Member
9 Posts |
Posted - 2008-06-17 : 10:59:00
|
| I can find out the data types used in my table by navigating the SSMS and right clicking the table and selecting modify.How do I view that same output using T-SQL?Thank youGoldmember |
|
|
madhivanan
Premature Yak Congratulator
22864 Posts |
Posted - 2008-06-17 : 11:03:01
|
| Select * from information_schema.columnswhere table_name='your_table'MadhivananFailing to plan is Planning to fail |
 |
|
|
|
|
|