Jump to content

ORDER BY question


karimali831

Recommended Posts

Hi

 

I can't get the ORDER BY to work correctly:

 

$getchallenges = safe_query("SELECT * FROM ".PREFIX."cup_challenges WHERE ladID='$laddID' AND challenger='$teamID' ORDER BY $order_date DESC");
   while($gc=mysql_fetch_array($getchallenges)) {

...
   if($gc['finalized_date'])
      $order_date = "finalized_date";
   elseif($gc['reply_date'])
      $order_date = "reply_date";
   else
      $order_date = "new_date";
...
}

 

Is it because of loop?

 

echo "order = $order_date";

output:

 

order =

order =

order = new_date

 

What I'm trying to achieve is to order by the latest date, but I have 3 date columns:

 

new_date

reply_date

finalized_date

 

Is it possible to order by multiple columns where largest to smallest?

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.