473,406 Members | 2,259 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

Sorting an array

Hi folks,

I have a database that contains records with IDs like "H1, H2, H3, ...,
Hn" and these refer to local government policy numbers. For example, H1
might be "Housing Policy 1" and so on. For some more insight, not all
policies will be prefixed with an "H", an in fact they could be prefixed
with *any* letter combination, but they will always end with a number.

When I retrieve them from the database I use "ORDER BY id" to get them
into a sensible order, but obviously as the IDs are strings I get them
returned like "H1, H10, H11, H2, ...". Alphabetically this is fine, but
logically (to a human at least) this order makes no sense whatsoever.

So what I'm looking for is either a way of changing the order in SQL to
something more sensible like "H1, H2, H3, ..., H10, H11" or a method of
sorting the results array *after* it has been returned from my SQL
query.

Any ideas?

--
Dylan Parry - http://webpageworkshop.co.uk

A Flower?
Jul 14 '06 #1
9 2570
Dylan Parry wrote:
When I retrieve them from the database I use "ORDER BY id" to get them
into a sensible order, but obviously as the IDs are strings I get them
returned like "H1, H10, H11, H2, ...". Alphabetically this is fine, but
logically (to a human at least) this order makes no sense whatsoever.
I should add that it's a multidimensional array that requires sorting,
where each row is a unique record from the database.

--
Dylan Parry - http://webpageworkshop.co.uk

A Flower?
Jul 14 '06 #2

You can split your field in 2 Fields, and concatenate them in your
listview ...

- one field "ID_PREFIX" with the letter ("H",...)
- a second field "ID_NUMBER" with the numbers (1,2,...)
"Dylan Parry" <us****@dylanparry.comwrote in message
news:vs**************@dylanparry.com...
Hi folks,

I have a database that contains records with IDs like "H1, H2, H3, ...,
Hn" and these refer to local government policy numbers. For example, H1
might be "Housing Policy 1" and so on. For some more insight, not all
policies will be prefixed with an "H", an in fact they could be prefixed
with *any* letter combination, but they will always end with a number.

When I retrieve them from the database I use "ORDER BY id" to get them
into a sensible order, but obviously as the IDs are strings I get them
returned like "H1, H10, H11, H2, ...". Alphabetically this is fine, but
logically (to a human at least) this order makes no sense whatsoever.

So what I'm looking for is either a way of changing the order in SQL to
something more sensible like "H1, H2, H3, ..., H10, H11" or a method of
sorting the results array *after* it has been returned from my SQL
query.

Any ideas?

--
Dylan Parry - http://webpageworkshop.co.uk

A Flower?

Jul 14 '06 #3
TheSteph wrote:
You can split your field in 2 Fields, and concatenate them in your
listview ...
Not really an option as the database has existed for some time already
and there are many thousand records that would need processing...

--
Dylan Parry - http://electricfreedom.org

A Flower?
Jul 14 '06 #4
Dylan Parry wrote:
Any ideas?
Sorted (so to say). I eventually implemented IComparable for the objects
I was trying to sort rather than try to sort them when they come out of
the database. That way I was able to use regular expressions to split up
the string and integer components of the ID and compare them
individually.

So I first compared the string parts and then, if the comparison
returned 0, compared the integers. Eg:

A1 compared to B1
A is before B, so return -1
return -1

A2 compared to A1
A is the same as B, so return 0,
2 is after 1, so return 1
return 1

And so on.

--
Dylan Parry - http://webpageworkshop.co.uk

A Flower?
Jul 14 '06 #5
If you always have one character you can do something create a separate
column of the number part, cast it to an integer and sort on the integer.
Untested code
CAST(SUBSTRING(TargetColumn,1) as Int) AS SortColumn.....ORDER BY SortColumn

"Dylan Parry" wrote:
TheSteph wrote:
You can split your field in 2 Fields, and concatenate them in your
listview ...

Not really an option as the database has existed for some time already
and there are many thousand records that would need processing...

--
Dylan Parry - http://electricfreedom.org

A Flower?
Jul 14 '06 #6
A database operation doesn't return an array. So, what exactly is it that
you want to sort?

In fact, you can almost always do your sorting in the query itself. But your
requirements are not clear. You say that the ID is stored as a string, but
that you want to sort by ID (for some unstated reason). You also say that
the order that is returned should be "sensible," but do not define what you
mean by "sensible." In fact, it could well be argued that alphabetical
sorting *is* "sensible" for IDs that are stored as text. You seem to
indicate that somehow the characters should be stripped from the IDs to sort
them as if they were numbers. If there are other starting characters, do the
numbers that follow them duplicate across different ID character/number
combinations? Apparently, the character(s) means something, but we don't
know what. For example, consider the following:

H1, H2, H11, A1, A10, A11, F2, F12, B1, B10

Now, if you were to sort them by ignoring the beginning character, you would
get:

H1, A1, B1, H2, F2, A10, B10, H11, A11, F12

Is *that* "sensible?"

So, could you please be more specific, both about what sort of rules you
want to apply to the sorting, how you define "sensible," and what the type
of the object is that you're sorting?

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Chicken Salad Alchemist

What You Seek Is What You Get.
"Dylan Parry" <us****@dylanparry.comwrote in message
news:vs**************@dylanparry.com...
Hi folks,

I have a database that contains records with IDs like "H1, H2, H3, ...,
Hn" and these refer to local government policy numbers. For example, H1
might be "Housing Policy 1" and so on. For some more insight, not all
policies will be prefixed with an "H", an in fact they could be prefixed
with *any* letter combination, but they will always end with a number.

When I retrieve them from the database I use "ORDER BY id" to get them
into a sensible order, but obviously as the IDs are strings I get them
returned like "H1, H10, H11, H2, ...". Alphabetically this is fine, but
logically (to a human at least) this order makes no sense whatsoever.

So what I'm looking for is either a way of changing the order in SQL to
something more sensible like "H1, H2, H3, ..., H10, H11" or a method of
sorting the results array *after* it has been returned from my SQL
query.

Any ideas?

--
Dylan Parry - http://webpageworkshop.co.uk

A Flower?

Jul 14 '06 #7
Kevin Spencer wrote:
So, could you please be more specific, both about what sort of rules you
want to apply to the sorting, how you define "sensible," and what the type
of the object is that you're sorting?

I think he was pretty clear. My interpretation is that he wants the
id's sorted first by the alphabetic prefix character(s) and then
numerically so that:

H1, H2, H11, A1, A10, A2, A11, F2, F12, B1, B10

becomes

A1, A2, A10, A11, B1, B10, F2, F12, H1, H2, H11

If the items are in an array or arraylist, then a class that implements
IComparer or IComparable would probably be the simplest solution.

Jul 14 '06 #8
Chris Dunaway wrote:
I think he was pretty clear. My interpretation is that he wants the
id's sorted first by the alphabetic prefix character(s) and then
numerically so that:

H1, H2, H11, A1, A10, A2, A11, F2, F12, B1, B10

becomes

A1, A2, A10, A11, B1, B10, F2, F12, H1, H2, H11
Yes, that was precisely what I was attempting to do.
If the items are in an array or arraylist, then a class that implements
IComparer or IComparable would probably be the simplest solution.
And that is exactly how I achieved it ;)

--
Dylan Parry - http://electricfreedom.org

A Flower?
Jul 14 '06 #9
I have a "multi valued IComparer" on my blog site.

http://sholliday.spaces.msn.com/ 6/19/2006 entry

The issue I think is "breaking the tie". Which my blog entry addresses.

You should be able to start with it, to get what you need.


"Dylan Parry" <us****@dylanparry.comwrote in message
news:vs**************@dylanparry.com...
Hi folks,

I have a database that contains records with IDs like "H1, H2, H3, ...,
Hn" and these refer to local government policy numbers. For example, H1
might be "Housing Policy 1" and so on. For some more insight, not all
policies will be prefixed with an "H", an in fact they could be prefixed
with *any* letter combination, but they will always end with a number.

When I retrieve them from the database I use "ORDER BY id" to get them
into a sensible order, but obviously as the IDs are strings I get them
returned like "H1, H10, H11, H2, ...". Alphabetically this is fine, but
logically (to a human at least) this order makes no sense whatsoever.

So what I'm looking for is either a way of changing the order in SQL to
something more sensible like "H1, H2, H3, ..., H10, H11" or a method of
sorting the results array *after* it has been returned from my SQL
query.

Any ideas?

--
Dylan Parry - http://webpageworkshop.co.uk

A Flower?

Jul 14 '06 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

25
by: Allie | last post by:
How would I go about sorting this structure by title? typedef struct { char author; char title; char code; int hold; int loan; } LIBRARY;
4
by: Andrew Poulos | last post by:
Say I have two arrays with the same number of elements that are related: var a1 = ; var b2 = ; I need to sort a1 but have the order of the elements in b2 reflect the any new order in a1. So...
2
by: Larry | last post by:
Thanks for the help in advance. Does anyone have a code sample for the following scenario. how would you sort the array of books (BookView) by author and by price. if there were a number of...
4
by: VooDoo | last post by:
Hi, I am getting confused with sorting arrays... $arraytest =array(5) { =string(2) "39" =string(2) "44" => string(2) "77" =string(3) "150" =string(3) "464" } why do i get NULL value if i try to...
5
by: Tartifola | last post by:
Hi, I'm working with numerical array and I'm a little lost on a particular sorting of one of them. In particular I have an array like a = array(,]) and I need to sort it using only the first...
4
by: spl | last post by:
I have an array of objects. I want to sort the array of a given numeric value that exists in each of the objects. Suppose the array of objects is called student and the numeric value I want to...
12
by: dillipkumar | last post by:
Hi, I have a Hash: %hash= 'student' => , I want to sort the hash according to sorting of 'roll_no' .. After sorting It should be displayed %hash= 'student' => ,
1
by: mohammedrh | last post by:
Can any body help me on sorting arrays in C#
3
by: dondigital | last post by:
I'm trying to figure out the best approach to grab data from an array. So heres the deal. I have byte array called curveData filled will hex bytes that I've downloaded from a unit under test....
6
by: tc18a | last post by:
I'm looking for a fast algorithm for sorting an array of integers with respect to a master list. For example: Master List: 7 3 9 1 32 6 5 4 99 100 201 13 Array that needs to be sorted array1:...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.