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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Update Records in a table from another table

Status
Not open for further replies.

sharapov

MIS
May 28, 2002
106
0
0
US
I have a database with two tables (Table 1 called: "DealDocs" and Table 2 called: "TRInvestmentListing"). There are several fields that match in each table, but most of them are not (ex: field "Entity, InvestID, description" exist in both tables, field "Cusip" only exiists in "TRInvestmentListing" table). I need to create a query with the following condition: if records for the field "Entity" and field "InvestID" (both fields) from table "TRInvestmentListing" don't exist in "DealDocs" table and "Cusip" field (from table "TRInvestmentListing") is empty, copy those records to DealDocs table.

Can anybody help me out with that query?
 
An append query like this (SQLcode) ?
INSERT INTO DealDocs (Entity, InvestID, description)
SELECT T.Entity, T.InvestID, T.description
FROM TRInvestmentListing AS T LEFT JOIN DealDocs AS D
ON T.Entity = D.Entity AND T.InvestID = D.InvestID
WHERE D.Entity Is Null AND D.InvestID Is Null AND Trim(T.Cusip & "") = ""

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top