Hi there.
Trying to load new table based on the following and I am getting a nested loop join...
Customer Table
Canceled Table
New Table
I am declaring cursor as SELECT * from Customer t1, Canceled t2
where Customer.id <> Canceled.id
This is giving me a nested loop. Obviously my SQL skills are terrible. I can't figure out how to write the SQL to only load into the new table where the ID in Customer does not equal the ID Cancelled.
Any help?
Thanks all.