Instruction
Great! Remember that numbers don't take quotation marks in SQL statements. For example:
INSERT INTO premium_account VALUES (6);
This will simply insert a 6 into the only column of the premium_account table. We did not need to place the 6 in quotes, as we did earlier with text. The same applies for any other SQL statement with numbers.
Exercise
A user (with the user_id of 3) has bought a premium account! Add that person to the table premium_account.



