How are you?
I have a database where some lines have more than one product and they are separated by a comma, as in the example below (there are other columns, but to make it more practical I only took these three).
| id | produdct | value |
|---|---|---|
| 47 | product1, product 2 | 12000.0 |
| 48 | product3 | 48000.0 |
| 49 | product4, product1, product2 | 28800.0 |
| 50 | product1 | 2000.0 |
| 51 | product5, product2 | 32000.0 |
| 53 | product3 | 128000.0 |
| 54 | product2 | 15000.0 |
| 55 | product4, product2, product5 | 96000.0 |
I need to separate each product, making a copy of that line for each one. I tried using some functions like explode, json_normalize, I tried creating a list of lists but nothing worked. Can you help me?