query problem

From: ron_tabada <ron_tabada(at)yahoo(dot)com>
To: pgsql-sql(at)postgresql(dot)org
Subject: query problem
Date: 2003-11-08 07:44:04
Message-ID: 20031108074404.14151.qmail@web14604.mail.yahoo.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Hello everyone, Good day! Could anyone help me translate this query in Microsoft Access to Postgresql. I'm having a difficulty. Pls...
Query1:
SELECT items.description, Sum(supplieditems.qty) AS SumOfqty
FROM items INNER JOIN supplieditems ON items.itemno = supplieditems.itemno
GROUP BY items.description;
Query2:
SELECT [items].[description], Sum([customer].[qty]) AS SumOfqty
FROM (items INNER JOIN OtherItem ON [items].[itemno]=[OtherItem].[Itemno]) INNER JOIN customer ON [OtherItem].[Itemno]=[customer].[itemcode]
GROUP BY [items].[description];
Query3:
SELECT [Query1].[SumOfqty], [Query2].[SumOfqty], [Query1]![SumOfqty]-[Query2]![SumOfqty] AS remain
FROM Query1, Query2;
I have translated Query1 and Query2 in POSTGRESQL but I don't know how to implement Query3.

---------------------------------
Want to chat instantly with your online friends? Get the FREE Yahoo!Messenger

Browse pgsql-sql by date

  From Date Subject
Next Message Oleg Bartunov 2003-11-08 07:49:41 Re: search facilities
Previous Message ronald 2003-11-08 07:40:58