Question

In Microsoft Access, the statement used to display employee names together with job dates and times, for all jobs starting on either 3/12/06 or 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.Date = #3/12/06# And Job.TimeStart = #8:00 AM#
b) Select Employee.Name, Job.Date, Job.TimeStart, Job.TimeEnd From Employee Inner Join Job On Employee.SSN = Job.ID Where Job.Date = #3/12/06# Or Job.TimeEnd = #8:00 AM#
c) Select Employee.Name, Job.Date, Job.TimeStart, Job.TimeEnd From Employee Inner Join Job On Employee.SSN = Job.SSN Where Job.Date = #3/12/06# Or 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.Date = #3/12/06# Or Job.TimeStart = #8:00 AM#

Answer

This answer is hidden. It contains 1 characters.