Step: Create Another Table

Create Another Table

To make things interesting let's create another table called countries

This is an example create expression.

CREATE TABLE countries (
  id INTEGER PRIMARY KEY,
  iso2 VARCHAR(2) NOT NULL,
  name VARCHAR(50) NOT NULL
)

Now, try it for yourself. Let's create table countries