MySQL
MySQL
What is RDBMS?
RDBMS stands for Relational Database Management System.
RDBMS is the basis for all modern database systems such as MySQL,
Microsoft SQL Server, Oracle, and Microsoft Access.
Customers Table
The relationship between the "Customers" table and the "Orders" table is the
CustomerID column:
Orders Table
10278 5 8 1996-08-12
10280 5 2 1996-08-14
10308 2 7 1996-09-18
10355 4 6 1996-11-15
10365 3 3 1996-11-27
10383 4 8 1996-12-16
10384 5 3 1996-12-16
The relationship between the "Orders" table and the "Shippers" table is the
ShipperID column:
Shippers Table
In this tutorial, we will use semicolon at the end of each SQL statement.