This is What's notice
不愛研究技術
只想完成任務
不愛研究基底座
只想解決這疑惑
-誤人子弟的筆記本
2013年7月4日 星期四
{SQL} Group by 年月
Group by 年 與 月:
SELECT ItemId,SUM(QTY),year(Date) as year, month(Date) as month
FROM abcTable
where ItemId='8687'
group by ItemId,year(Date) ,month(Date)
order by year desc