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.jobid 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.