Hi guys, can you please point me to the right direction? I have a table that's something like this:
How can I write a SQL that would delete the percent(%) symbol starting from column1 to column3... something like this:
Thanks for any info.
Code:
id mydescription col1 col2 col3...
1 description1 12% 23% 34%
2 description2 45% 56% 67%
3 description3 78% 89% 90%
.
.
.
How can I write a SQL that would delete the percent(%) symbol starting from column1 to column3... something like this:
Code:
id mydescription col1 col2 col3...
1 description1 12 23 34
2 description2 45 56 67
3 description3 78 89 90
.
.
.
Thanks for any info.