How to fetch an Employees, say 5 latest Action_reason rows which are in an effective dated record, no future rows, should select only current and history rows(effective date <= sysdate). Can I fetch these in single row or will it be 5 rows for an Employee?
Select
select emplid, effdt, action_reasons
-- we have to build a logic here, should .
-- Should we initilize initialize 5 ACT variables to fetch rows into it, please ?
-- Please help
from JOB
where emplid = '12345'
and effdt <= sysdate.
