IBM
C2090-610 · Question #136
User USER1 wants to retrieve records from a table named EMPLOYEE that satisfy at least one of the following criteria: - The employee's hire date (HIREDATE) is before 1999 and the employee's salary…
The correct answer is A. SELECT * FROM employee. See the full explanation below for the reasoning.
Question
User USER1 wants to retrieve records from a table named EMPLOYEE that satisfy at least one of the following criteria:
- The employee's hire date (HIREDATE) is before 1999 and the employee's
salary (SALARY) is less than $40,000.00 a year.
- The employee has attended university
Which SQL statement will accomplish this?
Options
- ASELECT * FROM employee
- BSELECT * FROM employee
- CSELECT * FROM employee
- DSELECT * FROM employee
How the community answered
(52 responses)- A81% (42)
- B12% (6)
- C2% (1)
- D6% (3)
Community Discussion
No community discussion yet for this question.