Part 2: NOT NULL & Unique Constraints in SQL
NOT NULL Constraints The NOT NULL constraint ensures that the column contains no null values. Columns without the NOT NULL constraint can contain null values by default. NOT NULL constraints must be defined at the column level. A NOT NULL constraint prohibits a column from containing nulls. The NULL keyword by itself does not actually … Read more