We have a table like the following:
| SKU | Manufacturer | Qty
|-----------------------------|
| 12345 | GE, Sony | 10
| 123456 | GE | 25
We need to split the rows where more than one manufacturer is listed, and copy the remaining row data (SKU is not unique). So the expected results would be following:
| SKU | Manufacturer | Qty
|-----------------------------|
| 12345 | GE | 10 |
| 12345 | Sony | 10 |
| 123456 | GE | 25 |
Can this be even done with MySQL, if so the how? If not, what would other options be then?