Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

select all the correct answers and walk me through your thought process You have.been asked to list the timecard_id, employee_id, and normal_hours for all employees

image text in transcribed

image text in transcribed

select all the correct answers and walk me through your thought process

You have.been asked to list the timecard_id, employee_id, and normal_hours for all employees in the "Sales" department. Which of these queries satisfies this request? SELECT timecard_id, employee_id, normal_hours FROM timecard WHERE employee_id = (SELECT * FROM employee WHERE department = 'Sales') SELECT timecard_id, employee_id, normal_hours FROM timecard WHERE employee_id = (SELECT employee_id FROM employee WHERE department = 'Sales') SELECT timecard_id, employee_id, normal_hours FROM timecard WHERE employee_id IN (SELECT employee_id FROM employee WHERE department ='Sales') SELECT tc.timecard_id, tc.employee_id, tc.normal_hours FROM employee AS emp JOIN timecard AS tc ON emp.department = 'Sales' SELECT tc.timecard_id, tc.employee_id, tc.normal_hours FROM timecard AS tc JOIN employee AS emp on tc.employee_id = emp.employee_id WHERE emp.department = 'Sales

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Microsoft Outlook 2023

Authors: James Holler

1st Edition

B0BP9P1VWJ, 979-8367217322

More Books

Students also viewed these Databases questions

Question

What do you think of the MBO program developed by Drucker?

Answered: 1 week ago