Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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 leagueid firstname, lastname, email
SELECT firstname, lastname, email FROM employee;
b
INSERT INTO league email lastname, firstname
SELECT firstname, lastname, email FROM employee;
c
INSERT INTO league firstname, lastname, email
SELECT firstname, lastname, email FROM employee;
d
INSERT INTO league
SELECT firstname, lastname, email FROM employee;
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started