I am using phpMyAdmin tool to construct a database. I have created a table : Vehicles
. Whenever I try to put some condition on any of the fields it does not work. e.g. I try to put a restriction on the Age
field so that Age
>10
. E.g.
ALTER TABLE Vehicles
ADD CHECK (Age>10)
But this doesn't work and whenever I enter any value less than ten the record is saved in the table