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
with my_first_cte as
(
select*from some_table
)
, my_summary_cte as
(
selectsum(field_a)
, id
from my_first_cte
group by id
)
select*from my_summary_cte