I have a table like this:
code allValues
--------------
C001 1,2,3,4
C002 3,4,5
C003 6,7
and I need to obtain a table like this:
code Value
----------
C001 1
C001 2
C001 3
C001 4
C002 3
C002 4
C002 5
C003 6
C003 7
Ca I do it with a SQL statement? I'm using MySQL in PHPMyAdmin, unaware of which specific database engine.