Not-Null Constraint

Why Trust Techopedia

What Does Not-Null Constraint Mean?

The not-null constraint is a restriction placed on a column in a relational database table. It enforces the condition that, in that column, every row of data must contain a value – it cannot be left blank during insert or update operations. If this column is left blank, this will produce an error message and the entire insert or update operation will fail.

Advertisements

Techopedia Explains Not-Null Constraint

Consider a table named CUSTOMER_MASTER that stores customer details for a bank’s database. Every customer must have at least a surname and must belong to a certain gender. The two columns dealing with surname and gender can then be marked as “NOT NULL” when creating the Customer_Master table.

A sample SQL script for doing this is given below:
CREATE TABLE customer_master (
custid INTEGER PRIMARY KEY,
surname CHAR NOT NULL,
firstname CHAR,
date_of_birth DATE NOT NULL,
gender CHAR NOT NULL)

The not-null constraint is a useful tool for database designers for enforcing business logic. Instead of using programming code to enforce the “must always have a value” concept, they simply use a built-in database feature.

Sometimes the not-null constraint is implicit. When a column is marked as a primary key (see the “custid” column in our example above), it is used to uniquely identify all rows in the table so that they obviously cannot be left blank.

Advertisements

Related Terms

Margaret Rouse
Technology Specialist
Margaret Rouse
Technology Specialist

Margaret is an award-winning writer and educator known for her ability to explain complex technical topics to a non-technical business audience. Over the past twenty years, her IT definitions have been published by Que in an encyclopedia of technology terms and cited in articles in the New York Times, Time Magazine, USA Today, ZDNet, PC Magazine, and Discovery Magazine. She joined Techopedia in 2011. Margaret’s idea of ​​a fun day is to help IT and business professionals to learn to speak each other’s highly specialized languages.