I Have a table called UID and the data looks like:
U_ID Urgent Impact Severe Priority
1 1 1 NULL 1
2 1 2 NULL 1
3 1 3 NULL 1
4 3 4 NULL 3
5 2 2 NULL 2
6 NULL NULL 1 NULL
7 NULL NULL NULL 1
8 NULL NULL NULL 2
9 NULL NULL NULL 3
10 NULL NULL NULL 4
11 1 NULL NULL NULL
12 1 1 NULL NULL
13 1 2 NULL NULL
14 1 2 1 NULL
15 1 3 1 NULL
and also I have another table called STID and the data looks like:
Priority Impact Urgent ID
3 4 3 1
3 4 3 1
2 2 2 1
2 2 2 1
2 2 2 1
and Also I have another table called PRID and the data looks like:
Priority ID
1 2
2 2
2 2
3 2
4 2
I Have a Table called FID and it contains U_ID and ID columns So I am trying to Insert those columns using the U_ID from UID Table and ID from STID and PRID Table.How can I do this?
My Final FID Table should like this:
U_ID ID
4 1
4 1
5 1
5 1
5 1
7 2
8 2
8 2
9 2
10 2
STIDandPRIDcontain NULLs? – Andriy M Jun 18 '11 at 1:18