Bug #19632 | syntax error while parsing selects with implicit inner join | ||
---|---|---|---|
Submitted: | 9 May 2006 10:52 | Modified: | 9 May 2006 12:36 |
Reporter: | Alexander Ekzhanov | Email Updates: | |
Status: | Not a Bug | Impact on me: | |
Category: | MySQL Server | Severity: | S3 (Non-critical) |
Version: | 5.0.20 | OS: | Linux (linux) |
Assigned to: | CPU Architecture: | Any |
[9 May 2006 10:52]
Alexander Ekzhanov
[9 May 2006 12:36]
MySQL Verification Team
Thank you for the bug report. Please see Join Processing Changes in MySQL 5.0.12 on http://dev.mysql.com/doc/refman/5.0/en/join.html Where you will find why: SELECT a.x,b.y,c.z FROM (a,b) LEFT JOIN c ON (c.x=a.x) ... works and not SELECT a.x,b.y,c.z FROM a,b LEFT JOIN c ON (c.x=a.x) ...