Correcting an ambiguous name problem requires which of the following?
a) Changing the name in the SQL statement
b) Preceding the name with the table name
c) Following the name with the table name
d) Separating the name from the table name
In SQL Query Analyzer, 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.jobdate, job.timestart, job.timeend From employee Inner
Join job On employee.ssn = job.ssn Where job.jobdate = #3/12/06# And job.timestart =
#8:00 AM#
b) Select employee. name, job.jobdate, job.timestart , job.timeend From employee Inner
Join job On employee.ssn = job.jobid Where job.jobdate = #3/12/06# Or job.timeend =
#8:00 AM#
c) Select employee. name, job.jobdate, job.timestart , job.timeend From employee Inner
Join job On employee.ssn = job.ssn Where job.jobdate = #3/12/06# Or job.timestart =
#8:00 AM#
d) Select employee. name, job.jobdate, job.timestart , job.timeend From employee , job
On employee.ssn = job.ssn Where job.jobdate = #3/12/06# Or job.timestart = #8:00
AM#