Multiple choice technology databases With SQL, how can you insert "Olsen" as the "LastName" in the "Persons" table? INSERT INTO Persons ('Olsen') INTO LastName INSERT ('Olsen') INTO Persons (LastName) INSERT INTO Persons (LastName) VALUES ('Olsen') None Reveal answer Fill a bubble to check yourself C Correct answer Explanation When inserting into specific columns, use INSERT INTO table_name (column1, column2...) VALUES (value1, value2...). Option C correctly shows inserting into the LastName column only. Options A and B have incorrect syntax.