mysql NOT NULL constraint syntax

mysql NOT NULL constraint syntax

Role: constraints force the column does not accept NULL values.

Dongguan marble platform

Description: the NOT NULL constraint mandatory field always contains a value. This means that if you do not add value to the field, you can not insert a new record or update the record.

mysql NOT NULL constraints example

// mandatory "Id_P" column and the "LastName" column does not accept NULL values 
CREATE TABLE Persons (Id_P int NOT NULL , LastName varchar (255) NOT NULL, FirstName varchar (255), Address varchar (255), City varchar (255) );

Guess you like

Origin www.cnblogs.com/furuihua/p/11905351.html