I am trying to create a table that store table names and count of the table.
I already have the list of tables. How to use this list to get all the count for the tables?
The result should be like this:
TABLE_NAME NUM_ROWS
------------ --------
tableName1 result from select count(*) from tableName1
...
Any ideas?
Thanks in advance.