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 |
anupalavila
Yak Posting Veteran
56 Posts |
Posted - 2008-12-04 : 01:34:52
|
HaiHow can we select all the column names of a tableThanks and Regards Anu Palavila |
|
SwePeso
Patron Saint of Lost Yaks
30421 Posts |
Posted - 2008-12-04 : 01:36:45
|
SELECT * FROM INFORMATION_SCHEMA.COLUMNSWHERE TABLE_NAME = 'xxxcxvxcv' E 12°55'05.63"N 56°04'39.26" |
 |
|
anupalavila
Yak Posting Veteran
56 Posts |
Posted - 2008-12-04 : 01:47:17
|
Thanks Patro Saint for your quick answerThanks and Regards Anu Palavila |
 |
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2008-12-04 : 02:09:38
|
Alsoselect * from syscolumns where OBJECT_NAME(id)='yourtablename' |
 |
|
|
|
|