Monday 23 January 2012

Count all records from your MySQL databse

If you want to count all records from your database, follow below instructions.

1) Login To your database.

2) Execute below query

> SELECT table_name, TABLE_ROWS FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = 'DATABASE_NAME' order by TABLE_ROWS asc;

You have to change only database_name from above query.

No comments:

Could not start a new session. Response code 500. Message: Failed to read marionette port

There is bug in firefox binary installed using apt/snap, I faced same issue when I installed firefox from apt package respository. I solved ...