[EMAIL PROTECTED] wrote:
> 
> >Description:
> 
> This query produces 16 results:
> 
> SELECT * FROM table1
> LEFT JOIN table2 ON (field1 = field2)
> WHERE field2 = 'something'
> ORDER BY field2,field3,field4
> 
> But this query produces 0 results:
> 
> SELECT * FROM table1
> LEFT JOIN table2 ON (field1 = field2)
> WHERE field2 = 'something'
> ORDER BY field2,field3,field4
> LIMIT 400;
> 
> I can also get the correct results set by removing the ORDER BY clause.

One other note.  This same query works fine with MySQL 3.23.48.


-m
-- 
## Mark T. Dame, Vice President, Internet Operations
## MFM Communication Software:  http://www.mfm.com/
## E-mail: mailto:mdame@;mfm.com  WWW: http://www.mfm.com/~mdame/
"...Every morning is the dawn of a new error..."

---------------------------------------------------------------------
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 <mysql-unsubscribe-##L=##[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to