2866
GB
Which SQL lists all tables with their row counts
IN
कौन सा SQL सभी तालिकाओं को उनकी पंक्ति संख्या के साथ सूचीबद्ध करता है
A
SHOW TABLES
तालिकाएँ दिखाएँ
B
SELECT TABLE_NAME, TABLE_ROWS FROM information_schema.TABLES WHERE TABLE_SCHEMA='dbname'
Information_schema.TABLES से TABLE_NAME, TABLE_ROWS चुनें जहां TABLE_SCHEMA='dbname'
C
COUNT(*) FROM all tables
सभी तालिकाओं से गिनती(*)।
D
SELECT * FROM sys.tables
Sys.tables से * चुनें
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English)
information_schema.TABLES contains TABLE_NAME and TABLE_ROWS for all tables in a schema.
व्याख्या (हिन्दी)
information_schema.TABLES में स्कीमा की सभी तालिकाओं के लिए TABLE_NAME और TABLE_ROWS शामिल हैं।