You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
目前我设置了一个日期时间的过滤条件,然后我想对符合过滤条件的数据进行同比和环比,所以我想新建同比和环比度量,然后根据日期时间过滤条件进行计算取值和显示。比如过滤条件为2021/1/1-2021/2/8,然后新建同比度量为 (select sum(数据) from 表 where 时间 >= 2021/1/1 and 时间<=2021/2/8)/(select sum(数据) from 表 where 时间 >= (2021/1/1+1年) and 时间<=(2021/2/8+1年))。所以现在就想问下能不能动态获取到2021/1/1和2021/2/8。
The text was updated successfully, but these errors were encountered:
目前我设置了一个日期时间的过滤条件,然后我想对符合过滤条件的数据进行同比和环比,所以我想新建同比和环比度量,然后根据日期时间过滤条件进行计算取值和显示。比如过滤条件为2021/1/1-2021/2/8,然后新建同比度量为 (select sum(数据) from 表 where 时间 >= 2021/1/1 and 时间<=2021/2/8)/(select sum(数据) from 表 where 时间 >= (2021/1/1+1年) and 时间<=(2021/2/8+1年))。所以现在就想问下能不能动态获取到2021/1/1和2021/2/8。
The text was updated successfully, but these errors were encountered: