Jump to content

[SOLVED] Order by date doesn't seem to work...


Perfidus

Recommended Posts

Hello everyone!

I'm using this query:

SELECT * FROM $table WHERE ref='$ref' ORDER BY DATE(STR_TO_DATE( `thedate`, '%d/%m/%Y %H:%i:%s' )) ASC LIMIT $startv, $amount";

But all the time the results appear in the order given automatically by the primary key which is an autoincrement field not really shorted by date...

Any hints?

Link to comment
Share on other sites

You would need to show what the data is and what the results actually are.

 

My guess is the format string '%d/%m/%Y %H:%i:%s' does not match the actual data (and this is another reason why you should use a DATETIME data type to begin with.)

Link to comment
Share on other sites

I will try to express myself better:

 

My table has 3 rows:

 

data_id: autoincrement, primary

description: varchar

thedate: datetime

 

This is an example of content:

 

data_id | description | thedate

------------------------------------

1 | whatever info | 2009-06-14 20:34:20

2 | whatever info | 2009-06-12 20:34:20

3 | whatever info | 2009-06-18 20:34:20

 

I want to make a query that returns results from the most recent date to the older one so I'm using:

SELECT * FROM $table WHERE ref='$ref' ORDER BY DATE(STR_TO_DATE( `thedate`, '%d/%m/%Y %H:%i:%s' )) ASC LIMIT $startv, $amount";

But all I get is the results in the order in which they where stored, not shorted by date...

Does something like this exists?

SELECT * FROM $table WHERE ref='$ref' ORDER BY DATETIME(STR_TO_DATETIME( `thedate`, '%d/%m/%Y %H:%i:%s' )) ASC LIMIT $startv, $amount";

If I try it I get an error, I guess it doesn't exist...

Any hints?

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.