Update README.md

This commit is contained in:
GowthamRaj K
2021-07-27 19:30:35 +05:30
committed by GitHub
parent 405952b3f7
commit 0abc04f366
+7 -7
View File
@@ -189,25 +189,25 @@ These components are
Following are some of the most commonly used constraints available in SQL
### NOT NULL Constraint
### !) NOT NULL Constraint
Ensures that a column cannot have a NULL value.
### DEFAULT Constraint
### 2) DEFAULT Constraint
Provides a default value for a column when none is specified.
### UNIQUE Constraint
### 3) UNIQUE Constraint
Ensures that all the values in a column are different.
### PRIMARY Key
### 4) PRIMARY Key
Uniquely identifies each row/record in a database table.
### FOREIGN Key
### 5) FOREIGN Key
Uniquely identifies a row/record in any another database table.
### CHECK Constraint
### 6) CHECK Constraint
The CHECK constraint ensures that all values in a column satisfy certain conditions.
### INDEX
### 7) INDEX
Used to create and retrieve data from the database very quickly.
# Data Integrity 🚧