There are multiple ways.
You may try something like this:
With x (Text) as (Values(Char('1', 10)),
(Char(' ', 10)),
(Char('12345', 10)),
(Char('99', 10)),
Char('350', 10),
(Char('00000', 10)))
Select Distinct Text, LPAD(Trim(Text), 10, '0') Sort
from x
Order By Sort;
Mit freundlichen Grüßen / Best regards
Birgitta Hauser
Modernization ? Education ? Consulting on IBM i
"Shoot for the moon, even if you miss, you'll land among the stars." (Les
Brown)
"If you think education is expensive, try ignorance." (Derek Bok)
"What is worse than training your staff and losing them? Not training them
and keeping them!"
?Train people well enough so they can leave, treat them well enough so they
don't want to.? (Richard Branson)
-----Original Message-----
From: MIDRANGE-L <midrange-l-bounces@xxxxxxxxxxxxxxxxxx> On Behalf Of James
H. H. Lampert via MIDRANGE-L
Sent: Mittwoch, 24. August 2022 19:44
To: Midrange Systems Technical Discussion <midrange-l@xxxxxxxxxxxxxxxxxx>
Cc: James H. H. Lampert <jamesl@xxxxxxxxxxxxxxxxx>
Subject: Re: SQL to sort numbers stored as strings?
On 8/24/22 10:36 AM, Vern Hamberg via MIDRANGE-L wrote:
If by "numeric" value you mean the number without spaces, you can use
this in SQL with the replace function -
Thanks, Vern, but no, I mean the field contains values like
"1234 "
"1 "
" "
"29 "
"1 "
and so forth.
If I do something like "SELECT DISTINCT FOO FROM BAR ORDER BY FOO," I get
" "
"1 "
"1234 "
"29 "
because FOO is a character string field, when what I want is
"1 "
"29 "
"1234 "
(and I don't care whether the blank shows up first, last, or not at all.)
--
JHHL
--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing list
To post a message email: MIDRANGE-L@xxxxxxxxxxxxxxxxxx To subscribe,
unsubscribe, or change list options,
visit:
https://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives at
https://archive.midrange.com/midrange-l.
Please contact support@xxxxxxxxxxxxxxxxxxxx for any subscription related
questions.
Help support midrange.com by shopping at amazon.com with our affiliate link:
https://amazon.midrange.com
As an Amazon Associate we earn from qualifying purchases.