create table student(roll int,name varchar(10))
insert into student values(1,'YOGES H')
ALTER TABLE student ADD CONSTRAINT cont_name
NOT NULL(name)
Incorrect syntax near the keyword 'NOT'.
I m not getting how to add constraint.
insert into student values(1,'YOGES H')
ALTER TABLE student ADD CONSTRAINT cont_name
NOT NULL(name)
Incorrect syntax near the keyword 'NOT'.
I m not getting how to add constraint.
Comment