MySQL Definition
MySQL Definition
MySQL is an open source SQL (or structured query language) database management
system. It leverages the concept of relational databases wherein multiple tables can
hold pieces of data pertaining to a large physical entity. MySQL databases implement
many data types that are used to help define the data. These data types
include numeric (as in integer, floating, mixed, signed, and unsigned), date and
time (DATE, DATETIME, and TIMESTAMP ), and string ( CHAR, VARCHAR,
TEXT, ENUM, and SET).
MySQL Commands
In this lesson, we'll cover many of the MySQL commands you would need to create
and manage databases. A more comprehensive table of commands is near the bottom.
Please note that the installation of MySQL isn't covered in this lesson, but let's cover
the main commands that you'll encounter with MYSQL, one at a time here:
9. Deleting Records
If you want to delete a record or multiple records from a table, you can use the DELETE
command as follows:
mysql> DELETE FROM Information WHERE dob = 1999-03-30;