lotharious
MIS
Code:
SELECT InvProductOrders.PO, InvProductOrders.Item, InvProductOrders.SupplierID, InvProductOrders.Quantity, InvProductOrders.OrderPO, InvProductOrders.OrderDate, InvProductOrders.DateRecv, InvProductOrders.WhoRecv, InvProductOrders.AmtRecv, InvMaterials.ItemDesc, InvProductOrders.Comment
FROM InvProductOrders INNER JOIN InvMaterials ON InvProductOrders.Item = InvMaterials.Item
ORDER BY InvMaterials.ItemDesc;
I can make this query editable by changing it to inconsistant updates however when the form this query is designed for will not allow me to edit it.
Im wondering if this is because Item is the Primary key for InvProductOrders, and its a secondary/foriegn key for Item and can contain duplicates (at this point).