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?
|
|
|
|||||||
|
|
Or use the sys.columns
|
|||
|
|
|
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. |
|||
|
|
|
|||||||
|
|
Query to count the number of columns in a table:
Replace tablename with the name of the table whose total number of columns you want returned. |
||||
|
|
Following query finds how columns in table:-
|
||||
|
|
|
Can get using following sql statement:
|
|||
|
|
|
|||
|
|