vote up 5 vote down star
1

Hi friends,

It's possible to find the number of rows in a table:
select count(*) from tablename

Is it possible to find the number of columns in a table?

Thanks in Advance.
Praveen J

flag

41% accept rate

2 Answers

vote up 14 vote down
SELECT COUNT(*)
FROM INFORMATION_SCHEMA.COLUMNS
WHERE table_name = 'tbl_name'
link|flag
Hi i cant under stand, here the information can you please give me the query once again.. table name = post columns = PostingID, PostingDate, Body – praveenjayapal Mar 19 at 16:53
Unless I am confused, you are looking for how many columns are in the table. If you execute the following query, it will return 3 (assuming the only columns are PostingId, PostingDate and Body) SELECT COUNT(*) FROM INFORMATION_SCHEMA.COLUMNS WHERE table_name = 'post' – Nathan Koop Mar 19 at 19:20
vote up 1 vote down

Or use the sys.columns

--SQL 2005
SELECT  *
FROM    sys.columns
WHERE   OBJECT_NAME(object_id) = 'spt_values'
-- returns 6 rows = 6 columns

--SQL 2000
SELECT  *
FROM    syscolumns
WHERE   OBJECT_NAME(id) = 'spt_values'
-- returns 6 rows = 6 columns

SELECT  *
FROM    dbo.spt_values
    -- 6 columns indeed
link|flag

Your Answer

Get an OpenID
or

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