Create the database
Let's start by creating the database that will hold our tables. Open your preferred MySQL/MariaDB tool:
- phpMyAdmin
- MySQL command line
- MariaDB command line
- a database tool provided by your hosting service
sql
CREATE DATABASE library_db
CHARACTER SET utf8mb4
COLLATE utf8mb4_general_ci;
sql
USE library_db;
sql
SELECT DATABASE();
text
library_db
Checkpoint
At this point, you should have an empty database namedlibrary_db.
Sign in to save your progress permanently.
Progress is saved in your browser session
Step 3 of 19