Prepare Interview

Mock Exams

Make Homepage

Bookmark this page

Subscribe Email Address

Question: Write a SQL query to find the total count of rows in each table of a database.
Answer: SELECT table_name, COUNT(*) FROM information_schema.tables GROUP BY table_name;
Is it helpful? Yes No

Most helpful rated by users:

©2025 WithoutBook