This is the example I am working off of
SELECT *
FROM table1,
table2
WHERE table1.id = table2.id
However, my "table1" needs to be a joined table (lets say from tables "tableA, tableB")
I am not sure how to use two tables when one of them is a joined table. Also, I am not sure how to alias a table that is joined (rename the joined table of tableA/tableB to table1).
Any help would be great
Thanks