I\'ve come across this error in MySQL for the join clause but I\'m fairly new to the JOIN argument and I\'m not sure what this means. Can anyone help?
JOIN
I think you want:
SELECT * FROM `venues` v, `venues_meta` m where v.venue_id = m.id AND m.id = '12'
(but be sure it's v.venue_id you want and not v.id)