I have a column that has a string in it as follow
Data
black83736
white87
white893
pink82928
pink1
black27
...
...
I want to just get the digits out of that column.
Edit
I would prefer mysql solution
|
|
Try this mysql Solution : (updated)
this is for your particular case, where you want the numbers in the end. so first we
** (UPDATE)** the above solution doesnt work for numbers ending in 0's (thanks to karolis for telling) so for that
Here we are appending '9099' to the end of the number, and then removing 9099 in the end. 9099 ? just a number which would be highly in-probable to occur in your columns |
|||||||||||||||
|
|
Yes, it's very inelegant, but currently the only reliable MySQL only solution that I know:
|
|||||||||||||||||
|
Well, you shouldn't unless you have powerful processor or this query does not return many results. MySQL isn't generally good for any string manipulation operations. |
|||
|
|