select
pgtl.name "Grade Name" ,
--
pps.name "Pay Scale Name",
pspsf.sequence "Ceiling: Step",
grs.starting_step "Starting Step",
grs.effective_start_date "Effective Start Date",
rownum "Step",
psp.spinal_point "Point",
--
pgtl.grade_id
from
per_grades_tl pgtl,
per_grade_spines_f grs,
per_parent_spines pps,
per_spinal_points psp,
per_spinal_point_steps_f pspsf
where
1=1
and grs.grade_id = pgtl.grade_id
and grs.parent_spine_id = pps.parent_spine_id
and psp.parent_spine_id = pps.parent_spine_id
AND grs.ceiling_step_id = pspsf.step_id
--
and pgtl.name = '200.2.Central'
order by
1,2,5,6;
No comments:
Post a Comment