show/hide this revision's text 3 Layout improvements

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.
show/hide this revision's text 2 added 22 characters in body

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 emplid, effdt, action_reasons(we action_reasons
-- we have to build a logic here, should we initilize 5 ACT variables to fetch rows into it, please help
) from JOB
where emplid = '12345'
  and effdt <= sysdate.
show/hide this revision's text 1

Working with effective dated records

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 emplid, effdt, action_reasons(we have to build a logic here, should we initilize 5 ACT variables to fetch rows into it, please help) from JOB where emplid = '12345' and effdt <= sysdate.