Jump to content

Retrieving Specific Data


Recommended Posts

Hello All,

So I am attempting to get the previous day's data from my table, but I want it to be averaged by hour (I have an entry for every 5 minute interval).

So I assumed it would look something like this:

$sth = $db->prepare("SELECT AVG(Power) AS AvgPower,
strftime('%H', Timestamp, 'unixepoch', 'localtime') AS TheDate
FROM TestTable
WHERE datetime(Timestamp, 'unixepoch') >= datetime('now', '- 24 hours')
GROUP BY TheDate");

This isn't working however, so I was hoping someone could tell me where I am going wrong.

Thanks!

Link to comment
Share on other sites

Hello All,

So I am attempting to get the previous day's data from my table, but I want it to be averaged by hour (I have an entry for every 5 minute interval).

So I assumed it would look something like this:

$sth = $db->prepare("SELECT AVG(Power) AS AvgPower,
strftime('%H', Timestamp, 'unixepoch', 'localtime') AS TheDate
FROM TestTable
WHERE datetime(Timestamp, 'unixepoch') >= datetime('now', '-24 hours')
GROUP BY TheDate");

This isn't working however, so I was hoping someone could tell me where I am going wrong.

Thanks!

The space in between the - and 24 was the problem. Solved.

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.