show index from [テーブル名];
select date_format(insert_date, '%w') as day_of_week, count(*) from test_table group by day_of_week;
select date_format(insert_date, '%H') as hour, count(*) from test_table group by hour;