Question

In SQL Query Analyzer, the statement used to display employee names together with job dates and times, for all jobs starting at 8 A.M., would be which of the following?
a) Select employee. name, job.jobdate, job.timestart, job.timeend From employee Inner Join job On employee.ssn = job.ssn Where job.timestart = #8:00 AM#
b) Select employee. name, job.jobdate, job.timestart, job.timeend From employee Inner Join job On employee.ssn = job.ssn Where job.timeend = #8:00 AM#
c) Select employee. name, job.jobdate, job.timestart, job.timeend From employee Inner Join job Where job.timestart = #8:00 AM#
d) Select employee. name, job.jobdate, job.timestart, job.timeend From employee, job On employee.ssn = job.ssn Where job.timestart = #8:00 AM#

Answer

This answer is hidden. It contains 1 characters.