Maxat Akbanov's blog
Maxat Akbanov's blog
Follow
Follow
homeAWSkubernetesAnsiblebashSQLGo
Series

sql


Articles in this series

Denormalization in SQL

Sep 12, 20233 min read

Denormalization in SQL is the process of restructuring a normalized database to improve performance, at the cost of introducing redundancy into the...

Denormalization in SQL

Third Normal Form 3NF in SQL

Sep 12, 20236 min read

In database normalization, the Third Normal Form (3NF) is a property of a relation in a relational database. A relation is in 3NF if: It is in Second...

Third Normal Form 3NF in SQL

Second Normal Form 2NF in SQL

Sep 8, 20235 min read

Second Normal Form is one of the stages in the normalization process used in relational database design. A table is said to be in 2NF if it meets the...

Second Normal Form 2NF in SQL

First Normal Form 1NF in SQL

Sep 4, 20235 min read

The First Normal Form (1NF) is one of the fundamental rules or guidelines to design a relational database. A table is considered to be in 1NF if: It...

First Normal Form 1NF  in SQL

Types of Data Integrity in SQL

Sep 3, 20233 min read

Data integrity ensures the accuracy, consistency, and reliability of data stored in a database. In SQL, there are four main types of data integrity...

Types of Data Integrity in SQL

Referential Constraints in SQL

Aug 31, 20234 min read

In SQL, referential constraints are used to ensure the integrity of data between tables. This is most commonly achieved using Foreign Key constraints,...

Referential Constraints in SQL