This is a pretty simple question, but it's driving me nuts, and I need a little help. I've got a table:
column1: eid (unique) PK
column2: serial number
column3: Parts
There can be many duplicate serial numbers because there can be anywhere from 1-5 parts associated with a serial number.
What I would like to do is dump this information into a third table with the following format:
column1: serial number PK
column2-6: parts that associated with the serial number. There can be anywhere from 1-5, but there cannot be more than five.
Any ideas on how to accomplish this.
column1: eid (unique) PK
column2: serial number
column3: Parts
There can be many duplicate serial numbers because there can be anywhere from 1-5 parts associated with a serial number.
What I would like to do is dump this information into a third table with the following format:
column1: serial number PK
column2-6: parts that associated with the serial number. There can be anywhere from 1-5, but there cannot be more than five.
Any ideas on how to accomplish this.