I have a database table conataining some columns. I won't go into details but the point is that a column represents the description. This description contains a variety of information that I want to separate and add in different new columns. Example:
Row before quering
id: 1
description: '12KG, 16mm
Row after quering
id: 1
description: '12KG, 16mm
weight: 12KG
length: 16mm
I found a way to do this via python but I would like to know if there's a way of doing it with MySql only.