Question: Given the following Access SQL SELECT statement: SELECT eventplan.eventno, eventrequest.datereq, dateauth, planno,workdate, empname FROM ( EventRequest INNER JOIN EventPlan ON EventRequest.eventno = EventPlan.eventno ) LEFT
Given the following Access SQL SELECT statement:
SELECT eventplan.eventno, eventrequest.datereq, dateauth, planno,workdate, empname
FROM EventRequest INNER JOIN EventPlan
ON EventRequest.eventno EventPlan.eventno
LEFT JOIN employee ON EventPlan.empno employee.empno
WHERE eventrequest.datereq BETWEEN ## AND ##
AND dateauth BETWEEN ## AND ## AND status "Approved";
The meaning of the SELECT statement is
Group of answer choices
List the event number, date requested, date authorized, plan number, work date, and name of the supervising employee of events meeting the following conditions: the date requested and date authorized are in July the event request has Approved status, and there is more than one event plan. Include a row in the result even if there is no supervising employee for the event plan.
List the event number, date requested, date authorized, plan number, work date, and name of the supervising employee of events meeting the following conditions: the date requested and date authorized are in July the event request has Approved status, and there is at least one event plan. Include a row in the result even if there is no supervising employee for the event plan.
List the event number, date requested, date authorized, plan number, work date, and name of the supervising employee of events meeting the following conditions: the date requested and date authorized are in July the event request has Approved status, and there is at least one event plan. Include a row in the result only if there is no supervising employee for the event plan.
List the event number, date requested, date authorized, plan number, work date, and name of the supervising employee of events meeting the following conditions: the date requested and date authorized are in July the event request has Approved status, and there are zero or more event plans. Include a row in the result even if there is no supervising employee for the event plan.
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
