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

Thank you

link|improve this question

50% accept rate
feedback

7 Answers

up vote 15 down vote accepted

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

link|improve this answer
Thank you very much – odiseh Jun 28 '09 at 14:15
feedback

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|improve this answer
Thank you very much – odiseh Jun 30 '09 at 4:59
1  
a variation on that is: SELECT o.Name, c.Name FROM sys.columns c JOIN sys.objects o ON o.object_id = c.object_id WHERE o.type = 'U' ORDER BY o.Name, c.Name All columns from all tables – Dan Williams May 5 '10 at 19:27
feedback

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

link|improve this answer
feedback
SELECT column_name, data_type, character_maximum_length, table_name,ordinal_position, is_nullable 
FROM information_schema.COLUMNS WHERE table_name LIKE 'YOUR_TABLE_NAME'
ORDER BY ordinal_position
link|improve this answer
feedback

You can use sp_help in sql server 2008.

sp_help <table_name>;
link|improve this answer
feedback

--This is another variation used to document a large database for conversion (Edited to --remove static columns)

SELECT o.Name                   as Table_Name
     , c.Name                   as Field_Name
     , t.Name                   as Data_Type
     , t.length                 as Length_Size
     , t.prec                   as Precision_
FROM syscolumns c 
     INNER JOIN sysobjects o ON o.id = c.id
     LEFT JOIN  systypes t on t.xtype = c.xtype  
WHERE o.type = 'U' 
ORDER BY o.Name, c.Name

--In the left join, c.type is replaced by c.xtype to get varchar types

link|improve this answer
doesn't return varchars – JumpingJezza Feb 21 at 5:39
feedback
select *
from INFORMATION_SCHEMA.COLUMNS
where TABLE_NAME='tablenName'

This is better than getting from "sys.columns" because it shows DATA_TYPE directly.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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