Answers for "mysql count all tables in database as integer"

SQL
1

display total number of tables in mysql

SELECT count(*) AS TOTALNUMBEROFTABLES
   -> FROM INFORMATION_SCHEMA.TABLES
   -> WHERE TABLE_SCHEMA = 'SCHEMA_HERE';
Posted by: Guest on March-09-2021

Code answers related to "mysql count all tables in database as integer"

Code answers related to "SQL"

Browse Popular Code Answers by Language