This commit is contained in:
wuaho 2021-07-30 14:51:31 +08:00
parent 76c5710ee7
commit 3f50754fc6

View File

@ -118,7 +118,7 @@ class XAnalysis:
FROM {self.game}.event
where `#event_name` = 'create_account'
and {where_str}) as a
left join (select `#account_id`, money, toDate(addHours(`#event_time`, `#zone_offset`)) as date
left join (select `#account_id`, unitPrice/100 as money, toDate(addHours(`#event_time`, `#zone_offset`)) as date
from {self.game}.event
where `#event_name` = 'pay') b
on a.`#account_id` = b.`#account_id`