A. SELECT ADD_MONTHS(MAX(hire_Date), 6) FROM EMP; B. SELECT ROUND(hire_date) FROM EMP; C. SELECT sysdate-hire_date FROM EMP; D. SELECT TO_NUMBER(hire_date + 7) FROM EMP;
A. To simplify the process of creating new users using the CREATE USER xxx IDENTIFIED by yyy statement. B. To grant a group of relate privileges to a user. C. When the number of people using the database is very high. D. To simplify the process of granting and revoking privileges. E. To simplify profile maintenance for a user who is constantly traveling.
A. ORDER BY SALARY > 5000 B. GROUP BY SALARY > 5000 C. HAVING SALARY > 5000 D. WHERE SALARY > 5000