If we have table A as follows:
+-------+
+ Table +
+-------+
How would one perform a query involving values of A.table
as the table name?
What I mean is something along the lines of this:
SELECT "Table" as "tbl" FROM "A";
SELECT * FROM "tbl";
but in one statement.