Roshan Jha10xai.hashnode.dev·Nov 6, 2023Learning SQL Window Functions - The Right WayWhy Window Functions? There is no simple way in SQL to calculate running aggregate on data e.g. for a monthly sales data, we may need to calculate the cumulative sales. Let's take a simple table of sales data. How will I get - Example#1 - Monthly c...SQL
Pratima Gautamgautampratima.com.np·Apr 27, 2023Window Functions in SQLIn SQL, computations over a collection of rows that are connected to the current row are performed using Windows functions (also known as analytical functions). Running totals, moving averages, and other aggregate values within a set of data can be d...42 readsDatabase | SQLSQL