Write the SQL code that answers the following question: Which classes are scheduled for Wednesdays at the

Question:

Write the SQL code that answers the following question: Which classes are scheduled for Wednesdays at the Downtown location? List the class name, the day, and the location.

a. SELECT ClassName FROM Classes WHERE Day='Wednesday' AND Location='Downtown';

b. SELECT ClassName, Day, Location FROM Classes WHERE Day='Wednesday' AND Location='Downtown';

c. SELECT ClassName, Day, Location WHERE Day='Wednesday' AND Location='Downtown';

d. SELECT *

FROM Classes WHERE Day='Wednesday' AND Location='Downtown';InstructoriD InstructorLastName InstructorFirstName InstructorStreetAddress InstructorCity InstructorState

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Related Book For  answer-question

Concepts Of Database Management

ISBN: 9780357422083

10th Edition

Authors: Lisa Friedrichsen, Lisa Ruffolo, Ellen Monk, Joy L. Starks, Philip J. Pratt

Question Posted: