So, I am not sure what the best way to do a join for these tables was. I want to use a JOIN because I believe it is faster than bring all three of the tables in on FROM. So, if i have three tables...
Table1
--id
--data
Table2
--id
--data
Table1_Table2
--table1_id
--table2_id
How can I do a join for this data using the join table?