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 <
try this
SELECT venue.*, venue_terms.* FROM venue INNER JOIN venue_terms ON venue.id = venue_terms.venue WHERE venue_terms.option IN ( 1 ,2) AND venue_terms.value IN (10,4) GROUP BY venue.id