In my case I have table with data are like that:
error_id|role_id|
--------+-------+
6|1;4;5 |
7|3;2 |
How can i change this table to this:
error_id|role_id|
--------+-------+
6|1 |
6|4 |
6|5 |
7|3 |
7|2 |
I will be very glad if you have any idea