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
As of v2.4 query77a is missing cr_call_center_sk in the select list and group by making it semantically different
query77a
cr as
(selectsum(cr_return_amount) as returns,
sum(cr_net_loss) as profit_loss
from catalog_returns,
date_dim
where cr_returned_date_sk = d_date_sk
and d_date between cast('[SALES_DATE]'asdate)
and (cast('[SALES_DATE]'asdate) +30 )
),
query77
cr as
(select cr_call_center_sk,
sum(cr_return_amount) as returns,
sum(cr_net_loss) as profit_loss
from catalog_returns,
date_dim
where cr_returned_date_sk = d_date_sk
and d_date between cast('[SALES_DATE]'asdate)
and (cast('[SALES_DATE]'asdate) +30 days)
group by cr_call_center_sk
),
The text was updated successfully, but these errors were encountered:
As of v2.4 query77a is missing
cr_call_center_sk
in the select list and group by making it semantically differentquery77a
query77
The text was updated successfully, but these errors were encountered: