- MySQL is a database system used on the web
- MySQL is a database system that runs on a server
- MySQL is ideal for both small and large applications or companies
- MySQL is very fast, reliable, and easy to use
- MySQL uses standard SQL
- MySQL is saved as .sql or its extension is .sql
Table in MySQL Example
CREATE TABLE Persons (
PersonID int,
LastName varchar(255),
FirstName varchar(255),
Address varchar(255),
City varchar(255)
);