MYSQL vs
MYSQL vs
The relational model was first delineated in a 1970 paper by Edgar F. Codd. One of
the first commercial programming languages related to the model, SQL, was
developed shortly after at IBM. For some time, SQL was the most widely used
database language, adopted as an ANSI standard in 1986 and in ISO a year later.
DQL: The data query language (DQL) is the most familiar and is used to run
queries on databases and extract information from stored data. For example,
selecting and returning the maximum value in a column.
DDL: A data definition language (DDL) is used to codify a database’s particular
structures and schemas. Creating a table or defining data types is an example.
DCL: A data control language (DCL) defines access, authorizations, and
permissions for users and processes accessing the database, including
granting administrator privileges, or restricting users to read-only privileges
only.
DML: And finally, a data manipulation language (DML) is used to make
modifications on existing components of a database, like inserting records,
updating values in cells, or deleting data.
Swedish company MySQL AB first released MySQL in 1995. Like much of the
database software which followed the initial rise of relational systems, MySQL is
simply an extension of the original SQL standard, adding more features, support,
procedural programming, control-flow mechanisms, and more.
Introduction to MySQL
MySQL is a very popular open-source relational database management
system (RDBMS).
What is MySQL?
MySQL is a relational database management system
MySQL is open-source
MySQL is free
MySQL is ideal for both small and large applications
MySQL is very fast, reliable, scalable, and easy to use
MySQL is cross-platform
MySQL is compliant with the ANSI SQL standard
MySQL was first released in 1995
MySQL is developed, distributed, and supported by Oracle Corporation
MySQL is named after co-founder Ulf Michael "Monty" Widenius's
daughter: My
Who Uses MySQL?
Huge websites like Facebook, Twitter, Airbnb, Booking.com, Uber,
GitHub, YouTube, etc.
Content Management Systems like WordPress, Drupal, Joomla!, Contao,
etc.
A very large number of web developers around the world
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.
Look at the following three tables "Customers", "Orders", and "Shippers" from
the Northwind database:
The relationship between the "Customers" table and the "Orders" table is the
CustomerID column:
Orders Table
The relationship between the "Orders" table and the "Shippers" table is the
ShipperID column:
Shippers Table
Exercise?
What does RDBMS stand for?
Database System
Rational
Relational
Relative
Management
Multimedia
Monitor
Submit Answer »
MySQL SQL
What is SQL?
SQL is the standard language for dealing with Relational Databases.
In this tutorial, we will use semicolon at the end of each SQL statement.