Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Consider the following queries: 1 . SELECT * FROM customer WHERE support _ rep _ id IN ( SELECT employee _ id FROM employee WHERE
Consider the following queries:
SELECT FROM customer
WHERE supportrepid IN
SELECT employeeid FROM employee
WHERE firstname 'Steve';
SELECT customer. FROM customer
INNER JOIN employee
ON customer.supportrepid employee.employeeid
WHERE employee.firstname 'Steve';
Which of these would be the most efficient?
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