JChilds Posted July 1, 2008 Share Posted July 1, 2008 ( I put this in the mysql section too, wasn't sure which place was best) I have a table with three columns: Timestamp, ID, Amount Every hour, new data is written to the table. The ID always stays the same, but the Timestamp(obviously) and Amount are changing. eg: 2008-06-24 08:00:00 1 100 2008-06-24 09:00:00 1 176 2008-06-24 08:00:00 2 120 2008-06-24 09:00:00 2 134 I want to be able to be able to retrieve all the ID's where the amount hasn't changed in the last 72 hours. I have no idea how to approach this, so if anyone could point me in the right direction, I'd appreciate it very much. Link to comment https://forums.phpfreaks.com/topic/112700-compare-entries-72-hours-apart/ Share on other sites More sharing options...
JChilds Posted July 1, 2008 Author Share Posted July 1, 2008 Has anyone even got an idea of where I should be looking for an answer? Link to comment https://forums.phpfreaks.com/topic/112700-compare-entries-72-hours-apart/#findComment-578798 Share on other sites More sharing options...
Barand Posted July 1, 2008 Share Posted July 1, 2008 try SELECT a.`timestamp`, a.id, a.amount FROM mytable a JOIN mytable b ON a.`timestamp` = b.`timestamp` + INTERVAL 72 HOUR AND a.id = b.id AND a.amount = b.amount This will tell you if it is the same 72 hours later but it won't tell if it changed in between. You'll need to check separately for that. Link to comment https://forums.phpfreaks.com/topic/112700-compare-entries-72-hours-apart/#findComment-578872 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.