I am trying to update a table with a table and cannot get it right. My two tables are below:
I need to get the Package table data into the Products Table
obviously PID_pk is the foreign key referenced by PID_fk
Please help!
Code:
Products Table
PID_pk FSC NIN PackageDesc
6 null null null
7 null null null
8 null null null
9 null null null
10 null null null
etc..
Package Table
ID PID_fk FSC NIN PackageDesc
1 6 9 67 blah
2 7 9 86 blah
3 8 9 45 blah
4 9 5 45 blah
5 10 5 23 blah
etc...
I need to get the Package table data into the Products Table
obviously PID_pk is the foreign key referenced by PID_fk
Please help!