Jump to content

Recommended Posts

I am storing dates in UNIX_TIME in my database, I want to select all fields in a table from the past 14 days, here is my query.

 

$query = "SELECT DATE_SUB(DATE_FORMAT(FROM_UNIXTIME(tDate),'%Y-%m-%d'), INTERVAL 14 DAY) COUNT(id) as numrows FROM tMachIssue";

 

The above query errors out before the COUNT part of the string.  Is my syntax wrong?  Thanks in advance.

Link to comment
https://forums.phpfreaks.com/topic/77065-solved-mysql-date-manipulation-help/
Share on other sites

Awesome worked perfectly.  If you have time could you explain the syntax I am properly betraying my ignorance in complicated SQL queries but what does the > do in (FROM_UNIXTIME(tDate) > NOW() - INTERVAL 14 DAY) I am guessing some kind of pointer?

FROM_UNIXTIME(tDate) converts the unix time to YYYY-MM-DD

 

NOW() give current date

NOW() - INTERVAL 14 DAY gives date 14 days ago

 

> greater than

 

 

ie

WHERE the date is greater than the date 14 days ago

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.