In Oracle, the statement used to show all employees’ social security numbers and names
that don”t have jobs assigned to them, would be _
In Microsoft Access, the statement used to display employee names together with all of
their job dates and times would be which one of the following?
a) Select Employee.Name, Job.Date, Job.TimeStart, Job.TimeEnd From Employee, Job
Where Employee.SSN = Job.SSN
b) Select Employee.Name, Job.Date, Job.TimeStart, Job.TimeEnd From Employee
Inner Join Job On Employee.SSN = Job.SSN
c) Select Employee.Name, Job.Date, Job.TimeStart, Job.TimeEnd From Employee.SSN
Inner Join On Job.SSN
d) Select Employee.Name, Job.Date, Job.TimeStart, Job.TimeEnd From Employee
Inner Join Job On Employee = Job
In the relationship between Employee and Job tables, which of the following fields in
Job table is the foreign key?
a) JobID
b) Email
c) SSN