Which of the following would be true of the new table with phone client’s phone
numbers?
a) ClientID would be the primary key and Phone the foreign key.
b) Phone would be the primary key and ClientID the foreign key.
c) ClientID and Phone would combine to form a primary key.
d) ClientID and Phone would combine to form a foreign key.
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#