Your first Database

Before you can begin to create something, you'll need to create a new database, which acts as a scope for everything you do:

create database main;

This will create a new database with the name main.

Databases contain different types and tables. You'll learn more about those on the following pages.