Ways to Get Table Row Counts in MySQL.

Vishalneeraj-24503
Posted by Vishalneeraj-24503 under Sql Server category on | Points: 40 | Views : 844
SELECT table_name,table_schema,table_rows
FROM information_schema.tables
WHERE table_schema not in('mysql','performance_schema','information_schema');

Comments or Responses

Login to post response