Last active
December 11, 2015 14:09
-
-
Save jgilmour/4612434 to your computer and use it in GitHub Desktop.
Oracle EBS SQL Query which will pull down the person_id and full name for all employees in per_all_people_f
Outputs as [person_id, full employee name], and orders by full_name
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Oracle EBS SQL Query which will pull down the person_id | |
# and full name for all employees in per_all_people_f | |
# Outputs as [person_id, full employee name], and orders by full_name | |
SELECT DISTINCT person_id, full_name from hr.per_all_people_f | |
ORDER BY full_name; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment