Scenerio:
When we enter an application, the date that the app is entered is automatically assigned to the app. I'm trying to display all employees name regardless of whether they submitted an application for the month of March.
Desired Results for March
Hunt 5
Jaso 10
Kimb 13
Robb
Current Results for March
Hunt 5
Jaso 10
Kimb 13
Here is my SQL:
SELECT TABLENAMES "NAME", COUNT(TABLEAPPNO) "APP NO"
FROM TABLENAMES, TABLEAPPNO
WHERE TABLENAMES.IDEING=TABLEAPPNO.IDERES(+) AND
(VRPT_TABPRO.DATOUV BETWEEN TO_DATE('20040301','YYYYMMDD') AND TO_DATE('20040331','YYYYMMDD')
Any suggestions?
Thanks
When we enter an application, the date that the app is entered is automatically assigned to the app. I'm trying to display all employees name regardless of whether they submitted an application for the month of March.
Desired Results for March
Hunt 5
Jaso 10
Kimb 13
Robb
Current Results for March
Hunt 5
Jaso 10
Kimb 13
Here is my SQL:
SELECT TABLENAMES "NAME", COUNT(TABLEAPPNO) "APP NO"
FROM TABLENAMES, TABLEAPPNO
WHERE TABLENAMES.IDEING=TABLEAPPNO.IDERES(+) AND
(VRPT_TABPRO.DATOUV BETWEEN TO_DATE('20040301','YYYYMMDD') AND TO_DATE('20040331','YYYYMMDD')
Any suggestions?
Thanks