* Roleigh Martin
>      -> from words w, events e, LEFT JOIN events e2 on ( e.url_id =

Try removing a comma:

  from words w, events e LEFT JOIN events e2 on ( e.url_id =

The comma is actually a 'synonym' for 'INNER JOIN', the statement fraction
above is the same as:

  from words w INNER JOIN events e LEFT JOIN events e2 on ( e.url_id =

--
Roger
database, table


---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to