Aggregation for a timewindow
I am new to mysql. Can somebody please help me by converting this ORACLE query to mysql?
There are two columns in a table (experiment). The dttm column is date data type and qty column is integer. I want to sum up the qty value for the interval of first 10 minutes and next 10 minutes etc etc.
select trunc(dttm,'hh24') +
(trunc(to_char(dttm,'mi')/10)*10)/24/60, sum(qty)
from experiment
group by trunc(dttm,'hh24') + (trunc(to_char(dttm,'mi')/10)*10)/24/60
order by trunc(dttm,'hh24') + (trunc(to_char(dttm,'mi')/10)*10)/24/60;
What would be the equivalent SQL in mysql?
thank and Best Regards,
Priyanka
Subject
Views
Written By
Posted
Aggregation for a timewindow
4228
June 19, 2008 12:37PM
Sorry, you can't reply to this topic. It has been closed.
This forum is currently read only. You can not log in or make any changes. This is a temporary situation.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.