I have a couple of tables, lets say I have a cars table and I have another table which hold all types of cars available(just to avoid multiple entries on the cars table) so I want a constraint on my cars table that has a "list/set" of types of cars FROM the TypesOFCar Table this table contains (Make, Model, etc..) how can I archive this.
I want it modular so I can just add another kind of car to the TypeOfCar table and it becomes available on the Cars table, thx in advance.
You want to add a CarType column to your Cars table and make it a foreign key to your TypeOfCar table.