Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

display total number of tables in mysql

SELECT count(*) AS TOTALNUMBEROFTABLES
   -> FROM INFORMATION_SCHEMA.TABLES
   -> WHERE TABLE_SCHEMA = 'SCHEMA_HERE';
 
PREVIOUS NEXT
Tagged: #display #total #number #tables #mysql
ADD COMMENT
Topic
Name
7+1 =