I have a table in MySQL, and I need to extract some data from a column using a regular expression.
The column (varchar, utf8_unicode_ci) has entries like this:
Some Text with spaces 6.112% 10-NOV-2021
I would like to extract the percentage number.
6.112%
And / or FROM the percentage number
6.112% 10-NOV-2021
Not all numbers have the same number of digits.
Any ideas?
Thanks
%
and use substr.