I have three tables:
table1:
MODULE | EMPLOYEE |
---|---|
A | Billy Bob |
A | Billy Joe |
B | John Doe |
B | Jane Doe |
C | Catey Rice |
table2: Primary_Key = (MATERIAL_ID, MATERIAL_NUM)
MATERIAL_ID | MATERIAL_NUM | MODULE |
---|---|---|
11111111111 | 222222222222 | A |
11111111112 | 222222222223 | B |
11111111113 | 222222222224 | C |
and I need a query that will fill in my third table so that it looks like this:
table3: Foreign_Key = (MATERIAL_ID, MATERIAL_NUM)
MATERIAL_ID | MATERIAL_NUM | EMPLOYEE |
---|---|---|
11111111111 | 222222222222 | Billy Bob |
11111111111 | 222222222222 | Billy Joe |
11111111112 | 222222222223 | John Doe |
11111111112 | 222222222223 | Jane Doe |
11111111113 | 222222222224 | Catey Rice |
I tried this query:
INSERT INTO table3(EMPLOYEE)
SELECT t1.EMPLOYEE
FROM table1 t1
FULL OUTER JOIN table2 t2
ON t1.MODULE = t2.MODULE;
I already have MATERIAL_ID
and MATERIAL_NUM
filled in on table3
by inserting the data from table2
. If I need to do it over with EMPLOYEE
in the query I'll just empty the table and rewrite it.
The issue I am running into is this error: ORA-01400: cannot insert NULL into ("MATERIAL_ID"),
which I figure is happening because I don't have a method that duplicates the rows as multiple
names fill out the same MATERIAL_ID
and MATERIAL_NUM
. So I need help to create the method to
do that.
table2.MODULE
unique? If not, then full joining by it may cause troubles – Alexey Larionov