Jump to content

Get MySQL Results from Current Time to Last Week


scottnicol

Recommended Posts

Hi,

 

I am trying to get the latest results from the last 7 days using MySQL. I have formatted the current time like so, and also made a variable the current timestamp, minus 7 days using mktime();.

 

$today = date("Y\-m\-d H:i:s");	
$lastweek = mktime(date("H"), date("i"), date("s"), date("m"), date("d")-7, date("Y"));
$lastweek = gmdate("Y-m-d H:i:s", $lastweek);

 

I use gmdate to convert Unix to normal timestamp, and I am in GMT, so it helps.

 

The query is:

$sqlquery = "SELECT * FROM dirt WHERE timestamp BETWEEN $today AND $lastweek ORDER BY votes DESC LIMIT 30";

 

The error is:

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '15:52:44 AND 2010-07-11 15:52:44 ORDER BY votes DESC LIMIT 30' at line 1

 

Anyone know what is wrong and how do I get it to find the last results from the past week? I think it works fine up until the query, but I'm not sure why. Column 'timestamp' does exist.

 

Thanks.

 

Link to comment
Share on other sites

Literal datetime values are strings and must be enclosed in single-quotes.

 

Assuming you have set the timezone in mysql, the following query will (untested) accomplish the same thing -

$sqlquery = "SELECT * FROM dirt WHERE timestamp BETWEEN NOW() - INTERVAL 7 DAY AND NOW() ORDER BY votes DESC LIMIT 30";

 

Also the BETWEEN min AND max syntax need the min to be less than max. Your query had min > max because today is greater than a date in the past.

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.