Jeśli na szczęście jest to mysql i przez sumę zamówień masz na myśli liczbę zamówień, a nie kwotę wartości:
select date_format(date_field, '%Y-%m-%d %H') as the_hour, count(*)
from my_table
group by the_hour
order by the_hour
Jeśli na szczęście jest to mysql i przez sumę zamówień masz na myśli liczbę zamówień, a nie kwotę wartości:
select date_format(date_field, '%Y-%m-%d %H') as the_hour, count(*)
from my_table
group by the_hour
order by the_hour