Glowworm27
Programmer
I want to update a table with data from another table.
I am a familuar with SQL version where I can use an Inner Join to get the matching rows I wish to update but how do I get this to work in oracle?
here is the query that I want to use
thaanks
George Oakes
Check out this awsome .Net Resource!
I am a familuar with SQL version where I can use an Inner Join to get the matching rows I wish to update but how do I get this to work in oracle?
here is the query that I want to use
Code:
Update Location_Master LM1
Set LM1.Company = i.Col003
, LM1.Store_Description = i.Col006
From Location_Master LM2
Inner Join 2007423_133618_LocationMaster i On LM2.StoreNbr = i.Col001;
thaanks
George Oakes
Check out this awsome .Net Resource!