-
Notifications
You must be signed in to change notification settings - Fork 681
Not Null
Andrey Gershun edited this page May 25, 2015
·
4 revisions
AlaSQL supports NOT NULL
column constraints.
Please see this example:
CREATE TABLE dbo.Cities (
cityid CHAR(3) NOT NULL PRIMARY KEY,
city VARCHAR(30) NOT NULL,
region VARCHAR(30) NULL,
country VARCHAR(30) NOT NULL
);
© 2014-2024, Andrey Gershun & Mathias Rangel Wulff
Please help improve the documentation by opening a PR on the wiki repo