一、每一年 select year(ordertime) 年, sum(Total) 銷售合計 from 訂單表 group by year(ordertime) 二、每個月 select year(ordertime) 年, month(ordertime) 月, sum(Total) 銷售合計 from 訂單表 group by year(ordertime), month(ordertime 三、每日 select year(ordertime) 年, month(ordertime) 月, day(ordertime) 日, sum(Total) 銷售合計 from 訂單表 group by year(ordertime), month(ordertime), day(ordertime) 另外每日也能夠這樣: select convert(char(8),ordertime,112) dt, sum(Total) 銷售合計 from 訂單表 group by convert(char(8),ordertime,112) 若是須要增長查詢條件,在from後加where 便可。