Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

It is 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?

share|improve this question

8 Answers

SELECT COUNT(*)
FROM INFORMATION_SCHEMA.COLUMNS
WHERE table_schema = 'database_name'
  AND table_name = 'tbl_name'
share|improve this answer
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 '09 at 16:53
1  
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 '09 at 19:20

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
share|improve this answer

Its been little late but please take it from me...

In the editor(New Query) by select the database object it can be a table too, if we use the Shortcut Key Alt+F1 we will get all the information of the object and I think will solve your problem as well.

share|improve this answer
This is really cool, thx – Nathan Koop Jul 5 '12 at 13:35
    String quer="SELECT * FROM sample2;

    Statement st=con.createStatement();
    ResultSet rs=st.executeQuery(quer);
    ResultSetMetaData rsmd = rs.getMetaData();
    int NumOfCol=0;
    NumOfCol=rsmd.getColumnCount();
    System.out.println("Query Executed!! No of Colm="+NumOfCol);
share|improve this answer
No need to query system table.. Use direct function like above... – Himanshu Feb 16 at 6:32
this answer is useful to me – user2098012 Mar 1 at 9:46
This is a good generic approach (RDBMS agnostic). I only suggest to change the query to SELECT * FROM sample2 WHERE 1=2. This way, you can get the schema but no data, which could add unneeded overhead. – Cascader Apr 30 at 5:52

Query to count the number of columns in a table:

select count(*) from user_tab_columns where table_name = 'tablename';

Replace tablename with the name of the table whose total number of columns you want returned.

share|improve this answer
is it also applicable for MYSQL , because i cant execute it – Hussain Akhtar Wahid Dec 13 '12 at 7:55

Following query finds how columns in table:-

 SELECT COUNT(COLUMN_NAME) FROM USER_TAB_COLUMNS
 WHERE TABLE_NAME = 'TableName';
share|improve this answer

Can get using following sql statement:

select count(*) Noofcolumns from SYSCOLUMNS where id=(select id from SYSOBJECTS where name='table_name')
share|improve this answer
SELECT COUNT(COLUMN_NAME) FROM INFORMATION_SCHEMA.COLUMNS WHERE 
TABLE_CATALOG = 'database_name' AND TABLE_SCHEMA = 'dbo'
AND TABLE_NAME = 'table_name'
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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