Multiple choice technology databases With SQL, how can you insert a new record into the "Persons" table? INSERT INTO Persons VALUES ('Jimmy', 'Jackson') INSERT VALUES ('Jimmy', 'Jackson') INTO Persons INSERT ('Jimmy', 'Jackson') INTO Persons INSERT VALUES ('Jimmy', 'Jackson') Reveal answer Fill a bubble to check yourself A Correct answer Explanation INSERT INTO with VALUES is the correct syntax for adding a new record. The table name follows 'INSERT INTO', then VALUES with the data in parentheses. Options B, C, and D have incorrect word order or missing the table name specification.