I\'ve searched through a bunch of websites and I have not come across any code or tutorial which has gone through the specifics of obtaining the table names from a single da
In MySQL this will list all databases:
show databases;
For each of these you can do:
use ;
and then
show tables;