DB Historical Milestones
MySQL Historical Milestones
DB Evolution.
A data model is a collection of high-level data description constructs that hide many low-level storage details.
Each child have only one parent.
A child can have multiple parents.
The central construct is a relation(table), which can be thought of as a set of tuples (rows) which shares common attributes(columns) .
Ease the modelling of complex data structures with many-to-many relationships, by inheritance, data encapsulation
Document databases store data in objects that can be deeply nested and can consist of arbitrary fields.
mysql -u root -p < employees.sql
SELECT, UPDATE, DELETE
INSERT INTO, CREATE DATABASE, ALTER DATABASE
CREATE TABLE, ALTER TABLE, DROP TABLE
CREATE INDEX, DROP INDEX