Multiple choice technology databases With SQL, how can you insert "Olsen" as the "LastName" in the "Persons" table? INSERT INTO Persons (LastName) VALUES ('Olsen') INSERT ('Olsen') INTO Persons (LastName) INSERT INTO Persons ('Olsen') INTO LastName INSERT INTO Persons ('Olsen') Reveal answer Fill a bubble to check yourself A Correct answer Explanation When inserting into specific columns, use INSERT INTO TableName (ColumnName) VALUES (value). The column list in parentheses must match the values. Options B, C, and D have incorrect syntax - column placement or keyword order is wrong.