SQL NOT NULL Constraint

 

The following SQL enforces the "P_Id" column and the "LastName" column to not accept NULL values:

Command :

 

CREATE TABLE Persons
(
P_Id int NOT NULL,
LastName varchar(255) NOT NULL,
FirstName varchar(255),
Address varchar(255),
City varchar(255)
)

copyright @2008 Punuptech.com