Question: Given this new table, which INSERT statement would query from the employee table to insert the first name, last name, and email address of all

Given this new table, which INSERT statement would query from the employee table to insert the first name, last name, and email address of all employees in the right columns?
a.)
INSERT INTO league (league_id, first_name, last_name, email)
SELECT first_name, last_name, email FROM employee;
b.)
INSERT INTO league (email, last_name, first_name)
SELECT first_name, last_name, email FROM employee;
c.)
INSERT INTO league (first_name, last_name, email)
SELECT first_name, last_name, email FROM employee;
d.)
INSERT INTO league
SELECT first_name, last_name, email FROM employee;

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!