I have a table. In one of the columns of the table , the values have this form:
Value1(12) Value2(45) Value3(35) Value4(37) Value5(17)
How to delete the opening parenthesis, the value inside the parentheses and the closing parenthesis? So that after updating the values would take this form:
Value1 Value2 Value3 Value4 Value5
P.s: It seems that regular expressions will help here, but how to form a query with them?