0
我剛剛在SQLite中啓動,並試圖檢索前幾年製作的訂單數量 ,在我的表格Commande
中。 我試着查詢沒有給出結果,但我不能 人物爲什麼:檢索去年的數據
select count(id_com)nOrder, strftime('%Y',date)prevYear
from Commande
where strftime('%Y',date) = strftime('%Y',date)-1
group by strftime('%Y',date);
我也試過如下:
select count(id_com)nOrder
from Commande
where strftime('%Y',date) in (select (strftime('%Y',date)-1) lastYear
from commande)
group by strftime('%Y',date);
顯示一些示例數據和期望的結果。 –