I have a Java servlet that connects to a MySQL database. And it is possible to create new tables under runtime, which means I do not know what their names are.
So here is the problem; I want to be able to find a value in the unknown table, and compare it to another in a table I have the name of.. I'm not sure where to go, or if this is even possible.
SHOW TABLES IN database_name;
Returns all the tables I want to use.
Appreciate any help.