Step: Insert another record

Insert another record

Now can we insert a record to a second table countries INSERT into <TABLE_NAME> (<COLUMNS>) values (<COLUMNS>) expression allows you to insert a record.

For example, this is how you add a record to 'countries' table.

INSERT INTO countries (name, iso2)
values ("United States Of America", "US")

Now, try it for yourself. Let's create a record for a country