Multiple choice technology databases With SQL, how can you insert a new record into the "Persons" table? INSERT INTO Persons VALUES ('Jimmy', 'Jackson') INSERT ('Jimmy', 'Jackson') INTO Persons INSERT VALUES ('Jimmy', 'Jackson') INTO Persons INSERT ('Jimmy', 'Jackson') INTO Persons Reveal answer Fill a bubble to check yourself A Correct answer Explanation INSERT INTO table VALUES (...) is the correct syntax. The table name must come after INTO, not at the end. Option A follows this pattern correctly.