February 2019
Beginner
136 pages
3h 7m
English
We need to set the grounds for writing our applications, and, in this case, we need to have a running instance of MySql. XAMPP is a good candidate to install to have quick access to a working database.
Let's create a database with the following tables by issuing the following statements:
use contact_db; CREATE TABLE IF NOT EXISTS contacts ( id INT AUTO_INCREMENT, last_name VARCHAR(255) ...
Read now
Unlock full access