Jump to content

PHP Mysql Select query for comparing dates?


angel1987

Recommended Posts

Hello all,

 

I am creating a script that accepts offers and its expiry date.

This expiry date is stored in column (expiry) in table.

 

There is a page that should display unexpired offers by comparing current date to the expiry date stored in database.

The date format used for storing in database and to compare is

$tdate = date("d-n-Y");

This Gives Output : 11-8-2010

 

So how do i compare current date 11-8-2010 to expiry date say 10-8-2010 in sql table?

I searched and found DATEDIFF function but i am unable to work it out. Please help with the query.

Link to comment
Share on other sites

Actually the developer who have used the javascript for calender in html form has used a script that gives an out put as of date("d-n-Y");

 

And may be that's why it was never getting added in the table with the field type DATE, may be because of format mismatch. So i made it varchar.

 

So is that wrong?

Link to comment
Share on other sites

It pretty much makes it impossible to do any queries efficiently filtering by the date column.  You can do conversions in your query, but you can't use indexes - if you have several thousand rows, for example, and want to find rows between two dates, there is no efficient way to do it - not only will MySQL have to do a full table scan, but it will also have to execute a function individually on each row to convert the varchar to a date in order to compare it to the range you are selecting.

 

I would recommend, if you can, to create a new column that is a DATE type, and run a query to populate that column with your current VARCHAR date, and change your application to store the date in that format.  Then you can set up an index on the DATE field, and it will be very easy to do the queries you are trying to do.

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.