Answers for "mysql get number of columns in table"

SQL
4

how to count number of columns in a table in mysql

-- 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

Code answers related to "mysql get number of columns in table"

Code answers related to "SQL"

Browse Popular Code Answers by Language