Start your All-Access Pass to unlock this challenge
Our production MySQL server has a database called customer with firstName and lastName columns. How can we insert new data into the database?
customer
firstName
lastName
insert into customer (firstName, lastName) VALUES ("James", "Bond");
INSERT VALUES ("James", "Bond") INTO (firstName, lastName);
INSERT INTO customer (firstName = "James", lastName = "Bond");
INSERT IN customer (firstName, lastName) VALUES ("James", "Bond");