Q20
Multiple choice
Examine this function body:
BEGIN
SELECT hire_date INTO date_hired FROM employees WHERE employee_id=emp_id;
RETURN TO_CHAR(date_hired);
END;
Which two headers will allow this function to compile successfully and take advantage of both invoker's rights and function result caching?
Select all that apply.