I would like to create a procedure which returns the MAX Date from the employee table and then allows me to call the max date again in select statements.
Thank you.
NOTE: I will be using the max_date_PARAM in many select statements for reporting.
CREATE OR REPLACE PROCEDURE max_date_proc (max_date_PARAM out DATE)
IS
BEGIN
SELECT max(start_date) INTO max_date_PARAM
FROM employee
END max_date_proc;
/
select * from benefits where claim > = max_date_PARAM;