Hello,
I am attempting to split a raw data table into a new table that has
split out a specific field in the raw data and created a new record
for each split but I have come to an impasse due to my limited
knowledge of sql.
The Raw data contains a number of columns with key columns similar to
Name, Product and Partcode. The issue is that the Partcode column in
the raw data can contain multiple values split by either a "," or a
"/" and in order to match with another source I need to split the
partcode and create a new record where each of the seperate columns
are the same except for the split value.
e.g Name Product Partcode
Columbus Fibre Optic cable PG234, PG456
needs to be converted to
Columbus Fibre Optic cable PG234
Columbus Fibre Optic cable PG456
I hope someone can help!
Thanks
tim
I am attempting to split a raw data table into a new table that has
split out a specific field in the raw data and created a new record
for each split but I have come to an impasse due to my limited
knowledge of sql.
The Raw data contains a number of columns with key columns similar to
Name, Product and Partcode. The issue is that the Partcode column in
the raw data can contain multiple values split by either a "," or a
"/" and in order to match with another source I need to split the
partcode and create a new record where each of the seperate columns
are the same except for the split value.
e.g Name Product Partcode
Columbus Fibre Optic cable PG234, PG456
needs to be converted to
Columbus Fibre Optic cable PG234
Columbus Fibre Optic cable PG456
I hope someone can help!
Thanks
tim
Comment