The EMP table contains the following columns: EMPNO NUMBER(6)
HIREDATE DATE
Review the following SELECT statement:
SELECT empno, TO_DATE('31-DEC-05') - hiredate
FROM emp
WHERE hiredate BETWEEN '31-DEC-04' AND '31-DEC-05';
What are the results of this statement?
Reveal answer
Fill a bubble to check yourself