Hi,
i want to show the number of entries in each table within my database.
I am currently doing this with:
SELECT COUNT() FROM table1
SELECT COUNT() FROM table2
SELECT COUNT() FROM table3
SELECT COUNT() FROM table4
...
However, is this possible to do in 1 query, which holds the name and the no of entries of each table in my database?
Thanks...