How can I create a VIEW which shows every task for January and March. The project table is linked with the task table via project_no and the employee table is linked to the task table via employee_id. The VIEW also needs to include the task date_time which I have included.
So far I'got got:
CREATE VIEW TASKS_JAN_MAR
AS SELECT P.NAME, T.TASK_ID, T.TASK_NO, E.FIRST_NAME, E.LAST_NAME,
TO_CHAR(T.DATE_TIME, 'DD-MON-YY')
FROM PROJECT P, TASK T, EMPLOYEE E
WHERE P.PROJECT_NO = T.PROJECT_NO AND E.EMPLOYEE_ID = T.EMPLOYEE_ID;