Understanding Relational Database Management System (RDBMS) in simple terms
A relational Database is a way of organizing data in rows and columns. The structure used to store data in row and column format is known as a table.
A relational database and the software required for handling the database will together form an RDBMS. It allows you to create, read, update, and delete (CRUD operations) data on a database.
In mathematics, 'a relation' is defined as a set of tuples that have the same attributes.
The table is a name we commonly use to represent a relation. It has a set of tuples(rows) and the same attributes(columns)
From the above discussion, we can understand that RDBMS is nothing but a collection of tables that store interrelated data + a set of programs to access and manipulate that data.
Some of the commonly used RDBMS packages are MySQL, PostgreSQL, Oracle Database, Microsoft SQL Server, IBM Db2, MariaDB.0
Comments
Post a Comment