Query Issue

kryten

Registered User.
Local time
Today, 08:01
Joined
Jul 24, 2004
Messages
40
Hi everyone,

I have a query with the following SQL statement:

SELECT GoodsInQry.Code, GoodsInQry.Qty, Inventory2.SumofQty, [GoodsInQry].[Qty]-[Inventory2].[SumofQty] AS Onhand
FROM GoodsInQry INNER JOIN Inventory2 ON GoodsInQry.Code = Inventory2.Code;

Is it possible to show all records from GoodsInQry in the results even though some may have null values?

Any advice would be greatly appreciated.
 
Thanks! That worked.
 

Users who are viewing this thread

Back
Top Bottom