Here is the sample SQL Query for Oracle Fusion HCM. These queries will help to retrieve the basic information related to the employee information.
Use this table accordingly and modify as per your requirements.
SQL Query :
SELECT
per.person_number,
per.full_name,
per.email_address,
per.phone_number,
per.date_of_birth,
per.effective_start_date AS start_date,
per.national_identifier AS ssn,
per.*
FROM
per_all_people_f per
WHERE
SYSDATE BETWEEN per.effective_start_date AND per.effective_end_date;