Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
alter table Livre add constraint AnneeParution <= 1950 and AnneeParution >= 2023;
alter table Livre modify AnneeParution between 1950 and 2023;
alter table Livre add constraint ck_annee check (AnneeParution between 1950 and 2023);
alter table Livre add constraint ck_annee check (AnneeParution <= 1950 and AnneeParution >= 2023);
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!