Hi jepley,
How about the following :-
[email protected]D> select * from t ;
X
-------------------------
45
13
meter
32
[email protected]D> select sum(translate(x, '0123456789abcdefghijklmnopqrstuvwxyz','0123456789 '))
"sum (services)" from t ;
sum (services)
--------------
90
[email protected]D>
Just put in other characters besides a to z to make the query more robust.
Cheers,
Prat