Help with simple SQL query?

Поиск
Список
Период
Сортировка
От Joost Kraaijeveld
Тема Help with simple SQL query?
Дата
Msg-id 1128512132.3655.200.camel@Panoramix
обсуждение исходный текст
Список 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 по дате отправления:

Предыдущее
От: Richard Huxton
Дата:
Сообщение: Re: Getting user created tables from SQL
Следующее
От: "Gregory S. Williamson"
Дата:
Сообщение: Re: Help with simple SQL query?