Alright, we have a friends table, but there's nothing in it. Let's use an insert statement to, well, insert a record, shall we?

Nice! With an insert statement, we insert the values we provide in the parentheses of the VALUES clause into the sequential columns of the table.

Psst: if we don't specify the columns we want to insert values into, we have to provide values for all of them.

Didn't we create more columns?