Jump to content

Wrong results when using Order By


dmccabe

Recommended Posts

Can anyone tell me why regardless of which way I order the info retreived the database the "Scanner" always comes out on top?


				<?php
					$sql = "SELECT ASSET_TYPE_ID, ASSET_TYPE_NAME FROM tblassettype ORDER BY ASSET_TYPE_NAME ASC"; 
					$result=mysql_query($sql);

					while ($row=mysql_fetch_array($result)) { 
					$id=$row["ASSET_TYPE_ID"]; 
					$name=$row["ASSET_TYPE_NAME"]; 
					echo "<option VALUE=\"$id\">".$name."</OPTION>";

				} ?>

 

Contents of table:

 

1 Monitor

      2 Laptop

      3 PC

      4 Printer

      5 Switch

      6 Router

      7 Scanner

      8 Server

      9 KVM

      10 Tape Drive

 

Yet regardless of if the table is sorted ASC or DESC, the item 7 Scanner is either very top or very bottom of list?

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.