- SQL Basics
- SQL Introduction
- SQL Syntax
- SQL Sample Database
- SQL SELECT
- SQL WHERE
- SQL ORDER BY
- SQL DISTINCT
- SQL LIMIT
- SQL FETCH
- SQL AND
- SQL OR
- SQL BETWEEN
- SQL IN
- SQL LIKE
- SQL IS NULL
- SQL Comparison Operators
- SQL Logical Operators
- SQL Alias
- SQL CASE
- Joins and Subqueries
- SQL INNER JOIN
- SQL LEFT JOIN
- SQL RIGHT JOIN
- SQL FULL OUTER JOIN
- SQL SELF JOIN
- SQL CROSS JOIN
- SQL Subquery
- SQL Correlated Subquery
- SQL UNION
- SQL INTERSECT
- SQL EXCEPT
- Aggregate Functions
- SQL AVG
- SQL COUNT
- SQL MAX
- SQL MIN
- SQL SUM
- SQL GROUP BY
- SQL HAVING
- SQL ROLLUP
- SQL CUBE
- SQL GROUPING SETS
- Database Management
- SQL CREATE DATABASE
- SQL ALTER DATABASE
- SQL DROP DATABASE
- SQL BACKUP DATABASE
- SQL SHOW DATABASES
- SQL SELECT DATABASE
- Table Management
- SQL CREATE TABLE
- SQL ALTER TABLE
- SQL ADD COLUMN
- SQL DROP COLUMN
- SQL DROP TABLE
- SQL TRUNCATE TABLE
- SQL SHOW TABLES
- SQL RENAME TABLE
- SQL Constraints
- SQL Primary Key
- SQL Foreign Key
- SQL UNIQUE Constraint
- SQL CHECK Constraint
- SQL NOT NULL Constraint
SQL NOT NULL Constraint
The NOT NULL
constraint ensures that a column cannot contain NULL values. It guarantees that a field always has a value, preventing missing or undefined data.
Key Features of SQL NOT NULL Constraint
- Ensures that a column must always have a value.
- Used in table creation or modification.
- Prevents inserting
NULL
into the column.
SQL NOT NULL Constraint Syntax
Defining NOT NULL in Table Creation
CREATE TABLE Employees (
EmployeeID INT PRIMARY KEY,
Name VARCHAR(50) NOT NULL,
Age INT NOT NULL
);
Name
andAge
must have values; NULL is not allowed.
Adding NOT NULL to an Existing Column
ALTER TABLE Employees
MODIFY Age INT NOT NULL;
- Makes the
Age
column mandatory.
Inserting Data into a Table with NOT NULL Constraint
INSERT INTO Employees (EmployeeID, Name, Age)
VALUES (1, 'John Doe', 30); -- ✅ Successful
INSERT INTO Employees (EmployeeID, Name, Age)
VALUES (2, NULL, 25); -- ❌ Error: Name cannot be NULL
Removing NOT NULL Constraint
ALTER TABLE Employees
MODIFY Age INT NULL;
- Allows
NULL
values inAge
.
Summary
- The
NOT NULL
constraint prevents missing data. - It can be defined at creation or added later.
- NULL values cause errors when inserted.
- It can be removed using
ALTER TABLE
.