A DataBase Management System, often known as a DBMS, is a piece of software installed on a computer to manage, store, retrieve, and update data. It handles the data, the database engine, as well as the conceptual database schema to make the organizing and manipulation of data easier. It thus acts as an interface between the customer and the database and helps to alter the data format, column names, document structure, as well as file structure itself.
There are four types of normalization in DBMS: 1NF, 2NF, 3NF, and BCNF (Boyce-Codd Normal Form).

It stands for Relational Database Management System (RDBMS). It is a database system that accesses data through relationships between tables using standard fields. The main difference between RDBMS and DBMS is that DBMS stores data in files, while RDBMS stores data in tables.
TRUNCATE and DROP commands are DDL commands used to delete database tables. Once executed, these actions cannot be rolled back, so they should be used with caution. When using DROP or TRUNCATE, all related table indexes are also deleted. In contrast, DELETE is a DML command used to remove specific rows or columns from a table, and these changes can be rolled back.
1. Entity is an object or concept that exists independently and can be uniquely identified.
2. Entity Type is the classification or category that defines a group of similar entities.
3. Entity Setis a collection of all entities belonging to the same entity type at a given point in time.
