Jump to content

SQL Statement question.


njdubois

Recommended Posts

I have a database that uses the MM/DD/YYYY format for dates.

 

With out the option of changing the date format inside the database, whats the best way to pull data based on a range of dates?

 

What I have been doing is using or

 

SELECT * FROM TABLE WHERE

user_name='whatever' AND Session_Date='01/01/2012' OR

user_name='whatever' AND Session_Date='01/02/2012' OR

user_name='whatever' AND Session_Date='01/03/2012' OR

user_name='whatever' AND Session_Date='01/04/2012' OR

user_name='whatever' AND Session_Date='01/05/2012' OR

 

and so on.

 

The problem is, if we go much farther past a few weeks, it takes to long. We are trying to run it for the year, and that's obviously not working.

 

I have been meaning to change the data format, but the problem is that format dates a while back. We used it in an access database with vb years ago, and when we switched over to HTML/PHP/MYSQL I didn't know there was a better format. Now this date format is all over the site, and to change it is kind of a project. There is plans for a site revamp. As I said, its been a learning process for me. I have recently started testing a setup where key parts of each page that are used almost everywhere are put in an included php file instead. When that's done, a switch like this would be easy but until then I need a way to make this work.

 

Any suggestions?

 

As always, this site and community has been a huge help for me, many many thanks!

Nick

Edited by njdubois
Link to comment
Share on other sites

If all the dates are in that same format, you can use the STR_TO_DATE function to convert them to a mysql date then use a range check.  That probably won't  help with your speed issue though as by doing the conversion at query time you prevent mysql from optimizing the query using indexes, as far as I am aware.

 

SELECT * FROM table WHERE user_name='whatever' and STR_TO_DATE(Session_Date, '%m/%d/%Y') BETWEEN '2012-1-1' AND '2012-1-5'

 

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.