更改餐别时间范围后,消费记录的餐别还是没变过来,该怎么处理?
答:餐别资料的餐别时间范围修改后,新采集的记录才会按新的餐别时间匹配。以前的记录不会发生变化。如果一定要处理,可以用以下SQL语句更新:
--请先保证无效的餐别时间为00:00:00到00:00:00,再执行以下语句,请先备份数据库。
update MealRecords set Kind=(select top 1 DinLev_id from DinLev where convert(datetime, beg_time)<=
convert(datetime, convert(varchar(20),convert(datetime,convert(float,MealRecords.sign_time)-floor
(convert(float,MealRecords.sign_time ))), 20))
and
convert(datetime,end_time)>=convert(datetime, convert(varchar(20),convert(datetime,convert(float,MealRecords.sign_time)-floor
(convert(float,MealRecords.sign_time ))), 20)))