MYSQL INTRODUCTION MySQL is an open source, fast reliable, and flexible relational database management system, used with PHP. MySQL is a fast, easy-to-use RDBMS being used for many small and big businesses. MySQL is developed, marketed and supported by MySQL AB, which is a Swedish company. MYSQL DATA TYPES BIT. CHAR. DATETIME. DECIMAL. ENUM. JSON. TIME. TIMESTAMP. CREATE A MYSQL TABLE A database table has its own unique name and consists of columns and rows. The CREATE TABLE statement is used to create a table in MySQL . Ex: CREATE TABLE MyGuests ( id INT(6) UNSIGNED AUTO_INCREMENT PRIMARY KEY, firstname VARCHAR(30) NOT NULL, lastname VARCHAR(30) NOT NULL, email VARCHAR(50), reg_date TIMESTAMP ) INSERT DATA INTO MYSQL After a database and a table have been created, we can start adding data in them. Here are some syntax rules to follow: String values inside the SQL query must ...