2
我有一個包含ID字段和3個日期時間字段的表。我需要得到每個日期時間字段monthwise.I的數量正在使用按日期時間字段分組
Select to_char(datatime1,'Mon-yyyy'),count(id) from table
where datetime1 is not null
Select to_char(datatime2,'Mon-yyyy'),count(id) from table
where datetime2 is not null
Select to_char(datatime3,'Mon-yyyy'),count(id) from table
where datetime3 is not null
然後我複製這導致到Excel和下面設置數據:
Month CountID(datetime1) CountID(datetime2) CountID(datetime3)
June-2013 50 20 16
July-2013 24 10 56
我在想,如果有一種方式我可以結合這三個查詢,而不是一次寫入一次查詢?
+1我正在做小提琴的答案,但既然你做了第一個......這是小提琴:http://sqlfiddle.com/#!4/d0e9d/3 –
謝謝!偉大的思想家都認爲:D –