I have two tables that I believe I want to JOIN. I\'m very new to this and am not completely sure…
The first table is called venues with the variables <
This will join the two tables and print out the venues which matches the attributes (option, value) in venue_terms:
SELECT v.* FROM venue v, venue_terms vt WHERE v.id = vt.venue AND vt.option = 1 AND vt.value = 10