Hi,
Breaking my head on how to split a string to lower, upper, numeric...
Here's the example of the string to split:
ArtADB1234567e9876540
The result should be as follows:
Art ADB 1234567 e 9876540.
These are separate values to be inserted in some table with the same number of columns.
Is it possible to do such thing with REGEXP please? Ideally i'd want to use SQL only.
Thank you very much.