-
Notifications
You must be signed in to change notification settings - Fork 665
Null
Mathias Rangel Wulff edited this page Jun 12, 2015
·
8 revisions
AlaSQL supports NULL
keyword.
Syntax:
NULL
AlaSQL uses undefined
value to emulate SQL NULL
constant instead of null
.
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
);
See also: ISNULL, [NOT NULL](Not Null)
© 2014-2024, Andrey Gershun & Mathias Rangel Wulff
Please help improve the documentation by opening a PR on the wiki repo