Si por suerte es mysql y por suma de pedidos te refieres al número de pedidos y no al monto del valor:
select date_format(date_field, '%Y-%m-%d %H') as the_hour, count(*)
from my_table
group by the_hour
order by the_hour
Si por suerte es mysql y por suma de pedidos te refieres al número de pedidos y no al monto del valor:
select date_format(date_field, '%Y-%m-%d %H') as the_hour, count(*)
from my_table
group by the_hour
order by the_hour