Answers for "how to get count numbers of result table in sql server"

SQL
4

how to count number of columns in a table in sql server

-- Oracle
SELECT count(*) FROM ALL_TAB_COLUMNS WHERE OWNER='owner_name' 
	AND TABLE_NAME = 'table_name';
-- SQL Server / MySQL
SELECT count(*) FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_SCHEMA = 'schema_name' 
	AND TABLE_NAME = 'table_name';
Posted by: Guest on July-04-2021
6

To count number of rows in SQL table

SELECT count(*)
FROM information_schema.columns
WHERE table_name = 'Your_table_nale';
Posted by: Guest on May-07-2020

Code answers related to "how to get count numbers of result table in sql server"

Code answers related to "SQL"

Browse Popular Code Answers by Language