Instruction
Great! Remember that numbers don't take quotation marks in SQL statements, for example:
INSERT INTO premium_account VALUES (6);
The same applies for any other type of SQL statement with numbers.
Exercise
The first user (with user_id 3) bought the premium account! Add that person to the table premium_account.
Stuck? Here's a hint!
Type
INSERT INTO premium_account VALUES (3);



