39
loading...
This website collects cookies to deliver better user experience
It's very easy to find data when it's structured & organized in a good manner, which we can see in SQL. It's quiet tough to find data in a unstructured manner. We can easily find out book in this room.
In SQL databases, data is stored in form of traditional 2 dimensional row-column structure
Relational database: E.g. EmployeeID column which would be a primary key of Employee table would be present as a foreign key in the Payments table, thus connecting the two tables with the referential property. This relationship ensures that there is no payment entry of an employee whose details are not present in the master Employee table. This is why SQL databases like MySQL are also called relational databases.
The architecture of SQL databases like MySQL is governed by the principles of ACID property.