Can anyone help me in understanding the following problem:
I have to create a table to log employee terminations. Include the empno, emp name, the date hired, the date terminated, and the name of the oracle user who terminated the employee.
I just have HIREDATE with me and wondering how can I determine date of termination and the user who terminated?
Thanks
I have to create a table to log employee terminations. Include the empno, emp name, the date hired, the date terminated, and the name of the oracle user who terminated the employee.
Code:
The EMP table is as follows:
EMPNO , ENAME, JOB, MGR, HIREDATE, SAL,COMM,DEPTNO
Code:
Here is the DEPT table:
DEPTNO, DNAME, LOC
Thanks