Q8. Examine the description of the EMPLOYEES table:
NLS_DATE_FORMAT is set to DD-MON-YY.
Which query requires explicit data type conversion?
- (A). SELECT dept_id, AVG(MAX(salary)) FROM employees GROUP BY dept_id;
- (B). SELECT dept_id, join_date, SUM(salary) FROM employees GROUP BY dept_id;
- (C). SELECT dept_id, join_date, SUM(salary) FROM employees GROUP BY dept_id, join_date;
- (D). SELECT dept_id, MAX(AVG(salary)) FROM employees GROUP BY dept_id;
Xem thêm:
- SCN trong oracle database là gì?
- Q50 You currently have an active transaction in your session and have been granted select access to V$TRANSACTION
- Get info % CPU usage by Session
- Luyện thi chứng chỉ Oracle Certified Professional OCP 19c
- Q26 Which two statements are true regarding the UNION and UNION ALL operators?