3. Create a procedure, ADD_EMPLOYEE, to insert a new employee into the EMPLOYEES table. The procedure should call a VALID_DEPTID function to check whether the department ID specified for the new...


please use sql to answer the following question as the question shown below


3. Create a procedure, ADD_EMPLOYEE, to insert a new employee into the EMPLOYEES<br>table. The procedure should call a VALID_DEPTID function to check whether the<br>department ID specified for the new employee exists in the DEPARTMENTS table.<br>a. Create a function called VALID_DEEPTID to validate a specified department ID and<br>a BOOLEAN value of TRUE if the department exists.<br>Dract<br>b. Create the ADD_EMPLOYEE procedure to add an employee to the EMPLOYEES table.<br>The row should be added to the EMPLOYEES table if the VALID_DEPTID function<br>returms TRUE; otherwise, alert the user with an appropriate message. Provide the<br>following parameters:<br>- first_name<br>- last_name<br>email<br>job: Use 'SA_REP' as the default<br>mgr: Use 145 as the default<br>sal: Use 1000 as the default<br>comm: Use o as the default<br>deptid: Use 30 as the default<br>Use the EMPLOYEES_SEQ sequence to set the employee_id column<br>- Set the hire_date column to TRUNC (SYSDATE)<br>c. Call ADD_EMPLOYEE for the name Jane Harris in department 15, leaving other<br>parameters with their default values. What is the result?<br>d. Add another employee named Joe Harris in department 80, leaving remainin<br>parameters with their default values. What is the result?<br>edem<br>

Extracted text: 3. Create a procedure, ADD_EMPLOYEE, to insert a new employee into the EMPLOYEES table. The procedure should call a VALID_DEPTID function to check whether the department ID specified for the new employee exists in the DEPARTMENTS table. a. Create a function called VALID_DEEPTID to validate a specified department ID and a BOOLEAN value of TRUE if the department exists. Dract b. Create the ADD_EMPLOYEE procedure to add an employee to the EMPLOYEES table. The row should be added to the EMPLOYEES table if the VALID_DEPTID function returms TRUE; otherwise, alert the user with an appropriate message. Provide the following parameters: - first_name - last_name email job: Use 'SA_REP' as the default mgr: Use 145 as the default sal: Use 1000 as the default comm: Use o as the default deptid: Use 30 as the default Use the EMPLOYEES_SEQ sequence to set the employee_id column - Set the hire_date column to TRUNC (SYSDATE) c. Call ADD_EMPLOYEE for the name Jane Harris in department 15, leaving other parameters with their default values. What is the result? d. Add another employee named Joe Harris in department 80, leaving remainin parameters with their default values. What is the result? edem

Jun 08, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here