Jump to content

[SOLVED] HELP Needed for Date Between in MYSQL Query


everurssantosh

Recommended Posts

Hi ,

 

I am writing a query in mysql which will find appropriate fields in a table between two dates given.

 

Below is the query I am using

 

select row_id from prop_price_period where pid='1' and firstday  <='13/09/2008' and lastday >='13/09/2008'.

 

This query was working fine until yesterday since I was using the MM/DD/YYYY (USA) date format.

Today we required our application to support both the date formats (USA & UK).

 

So I changed the date format to DD/MM/YYYY.

Now this query is returning wrong result set.

 

Kindly help me to solve this problem

 

Thanks

Santosh

Link to comment
Share on other sites

You can, but that will result in queries that take at least twice as long to execute because every value in the column must be passed through the function to get the value into a format that can be compared to know if the row matches the WHERE clause.

 

The mysql DATE, TIME, and DATETIME columns exist for a reason, to hold date, time, and datetime values in the most efficient way (least storage - a DATE takes 3 bytes, your existing strings take 11 bytes) and to allow the quickest queries.

 

You would normally use the STR_TO_DATE() function when inserting or updating information to take your MM/DD/YYYY or DD/MM/YYYY format and convert it into a DATE data type and use the DATE_FORMAT() function when selecting information to output a DATE data type any way you want.

Link to comment
Share on other sites

  • 1 month later...
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.