I have a small Porstgre database where I a have a table with several columns.
One of those columns contains data like this :
test1 (80%)
test2 (21%)
test3 (40%) etc ...
What I would like to do, is to be able to move that percentage to another column so the data will look like :
TEST_COLUMN | PERCENTAGE_COLUMN
test1 | 80%
test2 | 21%
etc...
Knowing that I have over 10k records, it would be helpful if there is a way to achieve this without having to move anything manually. Thank in advance