Question 3
Consider the following SQL statement:
Create table Cars(CarID varchar(8),CarName varchar(20),CarColour varchar(8),YearOfPurchase integer,Weight integer,primary key (CarID),check(YearOfPurchase in (1990, 2000, 2005, 2010)));Which among the following will cause an integrity constraint violation in the Cars table?
Note: Insertions are done in the order of the options given.