I figured that out but need help with another. Need to find the price of an item in an order which belongs to a specific contract.How can I write the following. Select contractprc from toSupply where Table Contracts contractNumber = Table toSupply contractNumAnd Table madeOf itemNum = Table tosupply itemNumHere are the tables againTO SUPPLY: contractNum references Contracts(contractNo) ItemNo references ITEMS(itemNumber) contractPrc numberContracts: contractNo Primary KeyITEMS: itemNo Primary KeyMADE OF: itemNum references ITEMS(itemNo) orderNum references Orders(orderNo)ORDERS: orderNo Primary Key contractNum references Contacts(contractNo)So say in the Order table I have the following recordOrderNum ContractNum1000 1000
and in the made of table I haveItem Num OrderNum1000 10001004 1000
Contract table I have contractNum 1000 1001 1002
and in the toSupply tableContrNum ItemNo contractPrice1000 1001 901000 1004 10 1001 1001 50 1004 1004 40
I want to find the price of the item that has a specific contract Number