Created
April 23, 2017 09:41
-
-
Save madalinignisca/f7e585138724d126b4be9e7457e64893 to your computer and use it in GitHub Desktop.
Count ROWS total in a MySQL Database
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT SUM(TABLE_ROWS) FROM `information_schema`.`tables` WHERE `table_schema` = 'your_database_name'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment