Skip to content
Advertisement

How to incrementally take average in Oracle SQL Or Python

I am bit stuck with this not getting how do i proceed further

Assume I have below data in table

Note : All the below column fields [NAME , AGE , COURSE , MARKS] are set to VARCHAR2(50 CHAR)

Using below query I am able to get incremental sum , but not able to apply logic how to get incremental average

My Query :

Expected output :

Solution in oracle OR python appreciated

Note : I have date in Oracle

The reason behind asking this question as it was asked to me in interview

Advertisement

Answer

To complement @mathguy’s answer, here the full query you need:

Result:

It uses windows functions by qualifying SUM() and COUNT(*) with OVER(ORDER BY NAME).

See running example at db<>fiddle.

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement