vote up 3 vote down star

Hi How can I get the name of all columns of a table in SQL SERVER 2008?

Thank you

flag

50% accept rate

3 Answers

vote up 6 vote down check

You can obtain this information and much, much more by querying the Information Schema views.

link|flag
Thank you very much – odiseh Jun 28 at 14:15
vote up 4 vote down

Hi

You can use the stored procedure sp_columns which would return information pertaining to all columns for a given table. More info can be found here http://msdn.microsoft.com/en-us/library/ms176077.aspx

You can also do it by a SQL query. Some thing like this should help -

SELECT * FROM sys.columns WHERE object_id = OBJECT_ID('dbo.yourTableName')

I hope this helps.

cheers

link|flag
Thank you very much – odiseh Jun 30 at 4:59
vote up 0 vote down

by using this query you get the answer select Column_nmae from from Information_schema.columns where Table_name like 'table name'

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.