當我運行下面的查詢,我需要使用裝飾功能上的日期, 輸出的順序不正確ORDER BY子句中沒有表現出預期的結果
select trim(man_date_created)as createddate,count(*) recordcount
from man
where man_date_created>sysdate-15
group by trim(man_date_created) ORDER BY createddate;
這個出來把我從這個讓我查詢
01-APR-16
02-APR-16
03-APR-16
04-APR-16
05-APR-16
06-APR-16
07-APR-16
08-APR-16
09-APR-16
10-APR-16
11-APR-16
27-MAR-16
28-MAR-16
29-MAR-16
30-MAR-16
31-MAR-16
在這裏你可以看到,在4月11日之後,它顯示3月份的條目。
是否有任何解決方案,以便我不能得到所有狀態的計數?
你想要產生什麼結果? – rhavendc
@rhavendc rsult應該按照某種順序,比如3月31日之後它會從4月1日開始,4月2日...等 – suraha
MySQL或oracle? –