Write the SQL code that answers the following question: Which instructors (showing last name only) live in
Question:
Write the SQL code that answers the following question: Which instructors (showing last name only) live in zip code 15217?
a. SELECT LastName FROM Instructors WHERE InstructorZipCode = '15217';
b. SELECT InstructorLastName FROM Instructors WHERE InstructorZipCode = 15217;
c. SELECT InstructorLastName FROM Instructors WHERE InstructorZipCode = "15217";
d. SELECT InstructorLastName FROM Instructors WHERE InstructorZipCode = &15217&;
Fantastic news! We've Found the answer you've been seeking!
Step by Step Answer:
Related Book For
Concepts Of Database Management
ISBN: 9780357422083
10th Edition
Authors: Lisa Friedrichsen, Lisa Ruffolo, Ellen Monk, Joy L. Starks, Philip J. Pratt
Question Posted: