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
Describe the bug
query with lead or lag will cause some be down
To Reproduce select lead(last_stage_id, 1, null) over ( partition by student_id order by paid_date_time ) as next_stage_id, lead(is_refund_order, 1, null) over ( partition by student_id order by paid_date_time ) as next_is_refund_order, lead(consumption, 1, null) over ( partition by student_id order by paid_date_time ) as next_consumption, lead(paid_date_time, 1, null) over ( partition by student_id order by paid_date_time ) as next_paid_date_time from xxxx Expected behavior
exec normally
The text was updated successfully, but these errors were encountered:
Describe the bug
query with lead or lag will cause some be down
To Reproduce
select lead(last_stage_id, 1, null) over ( partition by student_id order by paid_date_time ) as next_stage_id, lead(is_refund_order, 1, null) over ( partition by student_id order by paid_date_time ) as next_is_refund_order, lead(consumption, 1, null) over ( partition by student_id order by paid_date_time ) as next_consumption, lead(paid_date_time, 1, null) over ( partition by student_id order by paid_date_time ) as next_paid_date_time from xxxx
Expected behavior
exec normally
The text was updated successfully, but these errors were encountered: