Within my database I would like to know the total amount of rows.
I am able to find out the amount of rows in a certain table in my database with this query:
select count (*) From TABLE_NAME;
However, is there a more efficient way, rather than repeating this for every table?