Skip to content
Andrey Gershun edited this page May 25, 2015 · 8 revisions

NULL

AlaSQL supports NULL keyword.

NULL Constraint

You can set NULL column constraint. In this example the partname column can accept NULL values.

CREATE TABLE dbo.Parts (
  partid   INT         NOT NULL PRIMARY KEY,
  partname VARCHAR(25) NULL
);
Clone this wiki locally