What does the SQL window frame RANGE BETWEEN CURRENT ROW AND UNBOUNDED FOLLOWING compute?

SQL Fundamentals Hard

SQL Fundamentals — Hard

What does the SQL window frame RANGE BETWEEN CURRENT ROW AND UNBOUNDED FOLLOWING compute?

Key points

  • This window frame includes the current row and all rows following it.
  • It does not consider rows before the current row.
  • The aggregation is performed on a specific range within the partition.

Ready to go further?

Related questions