SQL Constraints: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 4: Line 4:


=<tt>NOT NULL</tt> Constraint=
=<tt>NOT NULL</tt> Constraint=
Also see: {{Internal|SQL#SQL_NULL|<tt>NULL</tt>}}


=Primary Key Constraint=
=Primary Key Constraint=

Revision as of 00:01, 23 May 2024

Internal

Overview

NOT NULL Constraint

Also see:

NULL

Primary Key Constraint

CREATE TABLE ...
( ...
  CONSTRAINT pk_someconstraint PRIMARY KEY (somecolumn)
);

Check Constraint

CREATE TABLE ...
( ...
  eye_color CHAR(2) CHECK (eye_color IN ('BR', 'BL', 'GR')),
  ...
);