Relational Database
Relational Database A relational database is a type of database that stores data in the form of tables. These tables are also called relations. Each table consists of rows and columns, where rows represent records and columns represent attributes. The relational database model was introduced by Edgar F. Codd in 1970. It is one of the most widely used database models in the world because of its simplicity, flexibility, and strong data integrity features. In a relational database, data is organized into structured tables, and relationships between tables are established using keys such as primary keys and foreign keys. This structure helps maintain consistency and avoids duplication of data. Each table focuses on a specific entity, such as students, employees, or products, and relationships connect related information across multiple tables. Popular relational database management systems (RDBMS) include: MySQL Oracle Database Microsoft SQL Server PostgreSQL ...