Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Abfrage, um die Anzahl der Tabellen zu zählen, die ich in MySQL habe

SELECT COUNT(*) FROM information_schema.tables WHERE table_schema = 'dbName';

Quelle

Das ist meins:

USE databasename; 
SHOW TABLES; 
SELECT FOUND_ROWS();