修改时间参数:
SELECT
货主城市,
strftime('%Y-%m',订购日期) 年月,
sum(运货费) 运货费
FROM 订单
where strftime('%Y-%m',订购日期)<='${datedelta("1997-01-01",mod((datetonumber(now())-datetonumber(a))/1000,30))}'
and strftime('%Y',订购日期)='1997'
and 货主城市 in ('天津','秦皇岛','南京')
group by 货主城市,strftime('%Y-%m',订购日期)