1z0051 Oracle Database: SQL Fundamentals I Free Practice Test — 29 Questions

29 questions · Full explanations · No account required

Free
Question 1 of 29

A project manager is tasked with generating a report of all software engineers within the \'Development\' division who have been with the company for more than five years and whose performance review score is above 85. Given a table named `personnel_records` with columns `person_id`, `full_name`, `job_title`, `division`, `hire_date`, and `performance_score`, which SQL statement accurately retrieves this specific subset of employees?

SELECT full_name, job_title FROM personnel_records WHERE division = 'Development' AND job_title = 'Software Engineer' AND hire_date < DATE('now', '-5 years') AND performance_score > 85
SELECT full_name, job_title FROM personnel_records WHERE division = 'Development' OR job_title = 'Software Engineer' OR hire_date < DATE('now', '-5 years') OR performance_score > 85
SELECT full_name, job_title FROM personnel_records WHERE division = 'Development' AND job_title = 'Software Engineer' AND hire_date > DATE('now', '-5 years') AND performance_score &lt; 85
SELECT full_name, job_title FROM personnel_records WHERE division = 'Development' AND job_title IN ('Software Engineer', 'Senior Software Engineer') AND hire_date < ADD_MONTHS(SYSDATE, -60) AND performance_score > 85

About the 1z0051 Oracle Database: SQL Fundamentals I Certification

These free practice questions are designed to help you assess your readiness for the 1z0051 Oracle Database: SQL Fundamentals I exam by Other. Each question comes with a detailed explanation to reinforce the correct concept. For a complete exam preparation experience with hundreds of questions, spaced-repetition study tools, and full exam simulations, explore our premium access.