I am using three tables - Orders, Employee and Position. Orders has Employee_no, and Employee table has Position_no. I want to make sure that the Employee_Nos in Order table are the numbers of those employee who are in Sales. The Position_no of employees in Sales are 3, 4, 5, 6. I used Query 1 (see below) to add a check constraint. However, it doesn't like the subquery. I could use Query 2 (see below) which makes sure that the Employee_No in Orders table is in the list (the list is the employee nos of employees who are in sales). However, Query 2 wouldn't work if a new employee joins. I know this could be solved using a trigger, but not sure how. Would be glad if somebody could help me out.
|
|
I don't do triggers often but it would basically be like this. I might have the syntax not quite right.
|
|||||||||
|
|
I wouldn't use triggers in your case. They are difficult to deal with and you need to know how to manage them correctly. Consider the following solution.
I don't have the Oracle now to test my solution, but I think you got the idea. You select incorrect orders into |
||||
|
|
|
Ah, types and subtypes. A SALES employee is a subtype of EMP. Assume the EMP primary key is EMP_ID. You can create a new column SALES_EMP_ID in EMP and a check constraint so that it is only set where there employee is in SALES and that, if set, it must be equal to EMP_ID. And another constraint to enforce uniqueness. Then you can create a referential integrity constraint from ORDERS to EMP.SALES_EMP_ID See the following demo. Only the first two inserts into T_EMP will succeed - the others test the check constraints. Of the inserts into T_ORDERS, only the first (salesman) will succeed.
|
|||
|
