Re: [BUGS] BUG #14733: unexpected query result - Mailing list pgsql-bugs

From bricklen
Subject Re: [BUGS] BUG #14733: unexpected query result
Date
Msg-id CAGrpgQ_t+wWvBGu3dvxpG3JjgdLTXO32h7pojpmsqtjC6zC6hg@mail.gmail.com
Whole thread Raw
In response to [BUGS] BUG #14733: unexpected query result  (mtv.spec@gmail.com)
Responses Re: [BUGS] BUG #14733: unexpected query result  (Dilip Kumar <dilipbalaut@gmail.com>)
List pgsql-bugs


On Tue, Jul 4, 2017 at 4:19 AM, <mtv.spec@gmail.com> wrote:
Query:

SELECT
  o.id,
  c.name,
  o.amount
FROM
  test.e_order o,
  test.e_customer c
WHERE o.e_customer_id = c.id OR
o.e_customer_id IS NULL
ORDER BY o.id ASC;

Expected result:

---------------------
| id | name | amount |
---------------------
| 1 | John    |     1000 |
---------------------
| 2 |            |      2000 |
---------------------

If you want that result try revising your query.
select e.id, c.name, e.amount
from test.e_order as e
left join test.e_customer as c on c.id=e.e_customer_id;


pgsql-bugs by date:

Previous
From: Tom Lane
Date:
Subject: Re: [BUGS] BUG #14733: unexpected query result
Next
From: Peter Eisentraut
Date:
Subject: Re: [BUGS] [PATCH] Refresh documentation for psql