Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

query join help

Status
Not open for further replies.

jwrocko

Programmer
Nov 29, 2007
34
US
I have a query that produces the desired results, but I need to be able to edit the results. So, the query is form resource.

Code:
SELECT  Parts.Part_Number, Parts.Component, Part_Detail.Manufacture_From, Part_Detail.Manufacturer, Part_Detail.Vendor_Part_Number, Parts.[Tracked?], Part_Detail.Vendor, Part_Detail.Unit_Cost, Parts.[Assembly?], Corellation.[RPL?]
FROM Parts, Part_Detail, [temporary], Corellation
WHERE (((Parts.Part_Number)=[temporary].[Part_Number]));

I am using this form to edit part information.

temporary.part_number holds a part number that inserted by the user to specify which part will be edited. The part number itself will not be edited. Everything else will be.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top