Loading Data Driven Insights
Preparing your learning content.
Preparing your learning content.
Learn what an RDBMS is, why it is useful, where it works well, and when it may not be the best database choice.
On this page
Jump to a lesson section
RDBMS stands for Relational Database Management System.
An RDBMS is software used to create, store, manage, and query relational databases. It helps you safely manage structured data in tables.
An RDBMS is useful because it helps keep business data organised, reliable, and easier to query.
A relational database works well when data has a clear structure and relationships between tables.
For example, an online shop might use separate tables like this:
These tables can be connected using common IDs such as:
customer_idorder_idproduct_idThis query shows how an RDBMS can connect related tables and summarise business information.
SELECT
c.customer_name,
COUNT(o.order_id) AS total_orders
FROM Customers AS c
LEFT JOIN Orders AS o
ON c.customer_id = o.customer_id
GROUP BY
c.customer_name;
SQL Roadmap Progress
Topic 2 of 111
2% complete
Next in SQL Roadmap
Continue with the next SQL topic in the recommended roadmap order.
Continue learning →