Write the SQL code for the following: List the full name of the therapist scheduled to work
Question:
Write the SQL code for the following: List the full name of the therapist scheduled to work on 10/16/2021.
a. SELECT Therapist.FirstName, Therapist.LastName FROM Therapist WHERE Therapist.TherapistID = Session.TherapistID AND SessionDate = #10/16/2021#;
b. SELECT Therapist.FirstName, Therapist.LastName FROM Session WHERE Therapist.TherapistID = Session.TherapistID AND SessionDate = #10/16/2021#;
c. SELECT Therapist.FirstName, Therapist.LastName FROM Therapist, Session WHERE Therapist.TherapistID = Session.TherapistID;
d. SELECT Therapist.FirstName, Therapist.LastName FROM Therapist, Session WHERE Therapist.TherapistID = Session.TherapistID AND SessionDate = #10/16/2021#;
Step by Step Answer:
Concepts Of Database Management
ISBN: 9780357422083
10th Edition
Authors: Lisa Friedrichsen, Lisa Ruffolo, Ellen Monk, Joy L. Starks, Philip J. Pratt