Solution: Create a Table
Learn about the solution to the previous challenge.
Solution
Create and show database
Below is how we create the school_db
database:
Press + to interact
/* implement here */create database school_db;use school_db;
We get the
Succeeded
response, which means the query executed successfully and there’s nothing to ...