A relational database is a collection of information that organizes data points with defined relationships for easy access. In the relational database model, the data structure including data tables, indexes and views remain separate from the physical storage, allowing administrators to edit the physical data storage without affecting the logical data structure.
You’ll find that most databases used in businesses these days are relational databases, as opposed to a flat file or hierarchical database. Relational databases have the clout to handle multitudes of data and complex queries, whereas a flat file takes up more space and memory, and is less efficient. So modern databases use multiple tables as standard. The data is stored in lots and lots of tables, or ‘relations’. These tables are divided into rows (records) and columns (fields).

1. Data Independence.
2. Efficient Data Access.
3. Data Integrity and security.
4. Data administration.
5. Concurrent access and Crash recovery.
6. Reduced Application Development
A record is also called as a row of data is each individual entry that exists in a table. For example
Sr no | Name | City | Country | Ph no | Amount |
A column is a vertical entity in a table that contains all information associated with a specific field in a table.
Raj |
Anand |
Jay |
Ram |
A NULL value in a table is a value in a field that appears to be blank, which means a field with a NULL value is a field with no value.
The RDBMS database uses tables to store data. A table is a collection of related data entries and contains rows and columns to store data. For example:
Ram | 12345 | delhi | 12dl |
Rohit | 6789 | mumbai | 15mh |
Raj | 13579 | surat | 19su |

A relational database is based on the relational model of data, which organizes data into one or more tables of rows and columns, with a unique key for each row. Generally, each entity type described in a database has its own table with the rows representing instances of that type of entity and the columns representing values attributed to that instance. Since each row in a table has its own unique key, rows in a table can be linked to rows in other tables by storing the unique key of the row to which it should be linked.
High data consistency: standardized relational databases allow the storage of data without contradictions, thus contributing to the consistency of the data. Likewise, relational systems present functions with which integrity conditions are defined and controlled automatically. The transactions that compromise the consistency of the data are blocked.
Set-oriented data processing: the relational database system is based on set-oriented processing that subdivides each entity into minimum values. This allows you to connect different entities through the content, as well as perform complex queries such as JOIN.