check constrait used to the value range in the column.
its allow only certain value.
create table vishal(
id int not null,
lastname varchar(50),
age int,
check(age<=20)
);
check constrait used to the value range in the column.
its allow only certain value.
create table vishal(
id int not null,
lastname varchar(50),
age int,
check(age<=20)
);
0Comments
Thanks you for commenting your questions. I will see question and respond you.