I have three tables:
1. [Car]
2. [CarDetails]
3. [Car_Items]
[Car]
has columns ([Car_Name], [Car_Colour])
[CarDetails]
has columns ([ModelNo], [CarPrice])
[Car_Items]
has columns ([wheels], [Doors])
I want to ask that if I want to update the data in these three tables where
Car.id = CarDetails.id = Car_Items.id
Can anyone please tell me a better way on how I could update the data in these tables?