On Wed, 2006-10-11 at 13:12 -0500, Peter Brawley wrote:
> >Still don't get it
> Did you read the section of that manual page headed "Join processing
> changes in MySQL 5.0.12"? It explains why and how to rewrite all such
> queries using explicit JOIN ... ON | USING syntax.
> 

This works in 4.x but not in 5.x

   FROM ibf_forums f, ibf_categories c

This will work in 5.x (and 4.x) I Presume

   FROM ibf_forums f, 
   JOIN ibf_categories c [on ....]




-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to