Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
特定のデータベースに存在するレコードの数を見つける方法は? たとえば、a、b、cという 3 つのデータベースがあり、データベースに存在するレコードの総数を数えたいとします。
これを information_schema から抽出できます。
SELECT SUM(TABLE_ROWS) from information_schema.TABLES where TABLE_SCHEMA ='a';