Q:

not null constraint

ALTER TABLE Persons
MODIFY Age int NOT NULL;
0

  CREATE TABLE Persons (
    ID int NOT NULL,
    
  LastName varchar(255) NOT NULL,
    FirstName varchar(255) 
  NOT NULL,
    Age int
);  
0

New to Communities?

Join the community