When I run this query in phpmyadmin:
SELECT * FROM events e LEFT JOIN venues v ON e.vid = v.vid
nothing happens. there is no error or anything at all, the same screen is simply returned to me.
but when I run this:
SELECT * FROM events LEFT JOIN venues ON events.vid = venues.vid
it works just fine. am i missing something?
table structures: https://dl.dropbox.com/u/28104350/help.png
try this:
put
"AS"