Ichinichi,
Monday, May 20, 2002, 3:40:20 PM, you wrote:

II> Description:
II> Query returns an unexpected result.

II> How-To-Repeat:
II> run the script below:

[skip]

II> select
II> o.orderid,
II> o.shipping_date,
II> o.cancel_date
II> from orders o, member u
II> where o.userid = u.userid;

II> select
II> o.orderid,
II> o.shipping_date,
II> o.cancel_date
II> from orders o, member u
II> where o.userid = u.userid
II> and o.orderid = 1;
II> ---------------------------------------------------------------------
II> the results of the last two queries are:

II> orderid shipping_date   cancel_date
II> 1       2002-05-20 21:50:24     NULL
II> 2       2002-05-20 21:50:24     NULL
II> orderid shipping_date   cancel_date
II> 1       2002-05-20 21:50:24     2002-05-20 21:50:24

II> in the first query, cancel_date should not be null for orderid=1.

It is fixed in v4.0.2 ...




-- 
For technical support contracts, goto https://order.mysql.com/?ref=ensita
This email is sponsored by Ensita.net http://www.ensita.net/
   __  ___     ___ ____  __
  /  |/  /_ __/ __/ __ \/ /    Victoria Reznichenko
 / /|_/ / // /\ \/ /_/ / /__   [EMAIL PROTECTED]
/_/  /_/\_, /___/\___\_\___/   MySQL AB / Ensita.net
       <___/   www.mysql.com




---------------------------------------------------------------------
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