Question

In Microsoft Access, 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.Date, 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.Date, 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.Date, Job.TimeStart, Job.TimeEnd From Employee Inner Join Job Where Job.TimeStart = #8:00 AM#
d) Select Employee.Name, Job.Date, 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.