I am new to SQL query. Recently, I am appointed to add value to a database table column. The table column type is varchar(300) with value e.g. [0.2649, 0.2548, 0.4801]
and I would like to add 0.01 to every single item inside the list which is
From:
0.2649, 0.2548, 0.4801
To:
0.2749, 0.2648, 0.4901
That column is with each cell contains a comma delimited list inside square brackets.
Could I know how to use sql query to do so?