Jump to content

date manipulation correct syntax


php_begins

Recommended Posts

I have a date field in the database table of this format 2012-01-26.i need to write 3 different queries:

a.)I need to retrieve all fields where date is between today and previous 5 days.

b.)I need to retrieve all fields where date is older than 5 days from today's date.

c.)I need to retrieve all fields where date between '5 days ago' to '30 days ago'

Can use some inbuilt mysql function.

Manipulating the query below:

SELECT fields FROM table WHERE date >= CURDATE()-5 or something like this

Or using a between clause. I am not getting the syntax correct.

Link to comment
Share on other sites

I think this should help you.

 

a.

select * from my_table where date_col between now() and date_sub(now(), interval 5 day);

 

b.

select * from my_table where date_col < date_sub(now(), interval 5 day);

 

c.

select * from my_table where date_col between date_sub(now(), interval 30 day) and date_sub(now(), interval 5 day);

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.