0
目前我得到的平均得分爲每小時從我用下面的查詢SQLite數據庫:設定值0,如果它不存在
SELECT AVG(rating) as avgRating, strftime('%H:00', date) as hour FROM ratings
WHERE questionId = 1 AND strftime('%Y-%m-%d', date) = strftime('%Y-%m-%d', 'now')
GROUP BY strftime('%H', date);
現在我想每一個小時,不具有任何價值,獲得平均評分爲0,這可能嗎?