I need to do natural join on two tables named Customers and Addresses (relationship 1:1), the common column in those tables is the key- ID (according to that column the natural join will operate) . however- this Column in table Customer is called "ID_Customer", and in the table Addresses it's called- "ID".
Because of that, the natural join doesn't work correctly, because the program doesn't identify that it's the same column (by significance).
I can not change the columns names to be the same (because of many reasons..) is there any way I could make this work- so the program would understand those are the same columns?