Jump to content

Sorting Numerically and then Alphabetically in Certain Format


abney317

Recommended Posts

you can simply order by that field, and while retrieving, check if the first character equals the previous, so you know when to change lines of add a slash. Basically you need to keep track of the first character... since the field is a string, you can grab the first character with $varname[0].

Link to comment
Share on other sites

select *, dataID * 1 as ord FROM data order by dataID * 1, dataID

 

You can detect the change in the $row['ord'] value to start a new section.

 

I was going to suggest adding a new column for the numeric value of the dataID to use for sorting purposes. That is easier. However, if you are going to give the dynamic field a reference, might as well use it in the ORDER BY clause.

SELECT *, dataID * 1 AS ord FROM data ORDER BY ord, dataID

Link to comment
Share on other sites

well that sorts them correctly (can someone explain how that SQL is actually working? haven't seen that method before)

 

but still I'm not sure how to get them showing correctly.... I can't just check the first number because 10 and 11 both start with 1... I guess I would need a regular expression or something to just get the number out to compare it with the previous number

 

Edit: lol I'm stupid... that's what "ord" is for I guess... still how does "dataID * 1" pull out the number?

Link to comment
Share on other sites

By multiplying the field contents by 1, it is converted to a number and only the leading numerical value is used.

 

<?php

$query = "select dataID, dataID * 1 as ord FROM data order by ord, dataID";
$result = mysql_query($query);

$heading = null; // remember last heading, initialize to a value that will never exist as data
while(list($dataID,$ord) = mysql_fetch_row($result)){
if($heading != $ord){
	// a new (or first) heading found
	if($heading != null){
		// not the first heading, close out the previous section
		echo implode (' / ',$data) . '<br />';
	}
	$heading = $ord; // remember new heading
	// start a new section
	$data = array();
}
// handle each piece of data
$data[] = $dataID;
}
// close out the last section
echo implode (' / ',$data) . '<br />';

Link to comment
Share on other sites

By multiplying the field contents by 1, it is converted to a number and only the leading numerical value is used.

 

<?php

$query = "select dataID, dataID * 1 as ord FROM data order by ord, dataID";
$result = mysql_query($query);

$heading = null; // remember last heading, initialize to a value that will never exist as data
while(list($dataID,$ord) = mysql_fetch_row($result)){
if($heading != $ord){
	// a new (or first) heading found
	if($heading != null){
		// not the first heading, close out the previous section
		echo implode (' / ',$data) . '<br />';
	}
	$heading = $ord; // remember new heading
	// start a new section
	$data = array();
}
// handle each piece of data
$data[] = $dataID;
}
// close out the last section
echo implode (' / ',$data) . '<br />';

 

Awesome

Works perfectly and makes sense... really appreciate the help

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.