Help with simple SQL query? - Mailing list pgsql-sql

From Joost Kraaijeveld
Subject Help with simple SQL query?
Date
Msg-id 1128512132.3655.200.camel@Panoramix
Whole thread Raw
List pgsql-sql
Hi,

I have 2 tables with the following columns:

order: order_id, order_price
orderline: parent_order_id, orderline_price 

I want all orders order where _price <> sum(orderline_price).

What is wrong with the following query:

select order_id from order, orderline
where order_id = parent_order_id
and order_price <> (select sum(orderline_price) from orderline group by
parent_order_id)


It reports "ERROR:  more than one row returned by a subquery used as an
expression" which seems right (the select sum() returns multiple rows?),
but I cannot get query right. Can someone help?

TIA

-- 
Groeten,

Joost Kraaijeveld
Askesis B.V.
Molukkenstraat 14
6524NB Nijmegen
tel: 024-3888063 / 06-51855277
fax: 024-3608416
e-mail: J.Kraaijeveld@Askesis.nl
web: www.askesis.nl 




pgsql-sql by date:

Previous
From: Richard Huxton
Date:
Subject: Re: Getting user created tables from SQL
Next
From: "Gregory S. Williamson"
Date:
Subject: Re: Help with simple SQL query?