Is it possible to write a query where we get all those characters that could be parsed into int from any given string?
For example we have a string like: "$%^DDFG 6 7 23 1"
Result must be "67231"
And even slight harder: Can we get only first three numbers?
123abc456def, do you want to return123456,123and456, just123or perhaps1and2and3etc? The best approach depends on the exact spec.