By digits and spaces I'll assume that you mean that and therefore it has no decimals, commas, etc.
By padded I'll assume you mean padded on the left and the field is right justified. But it may not matter.
Then perhaps your only problem is that you want one result for ' 0120' and ' 120' and not a separate result for each.
create table qtemp.jhhl
(mychar char(10));
insert into qtemp.jhhl (mychar) values(' 0120');
insert into qtemp.jhhl (mychar) values(' 120');
insert into qtemp.jhhl (mychar) values(' 73');
select distinct(cast(trim(mychar) as integer))
from qtemp.jhhl
order by 1;
returns 73, 120.
Rob Berendt
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact
[javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.