python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
row_number is not unique for duplicate records
I am trying to find the latest update of a particular row from a bunch of rows per uuid.
For that we use row_number() over a partition as shown below,
"row_number"() OVER (
PARTITION BY ...

Jimson James
Votes: 0
Answers: 2
Percentile rank over multiple partitions averages
Assume I have a table like this
id
cnt
tier
1
100
gold
2
200
silver
3
300
bronze
4
400
bronze
5
500
bronze
6
600
gold
7
700
silver
8
800
silver
9
900
silver
10
1000
silver
...
xiaolong
Votes: 0
Answers: 4
How to use window function to aggregate data based on date or rank column?
So I have a list of shipments and I have the the order total and the total for each individual shipment, but I'm struggling to come up with the code to create an additional column for cumulative shipm...
user1452574
Votes: 0
Answers: 2
PostgreSQL : Cumulative sum
I'm having a query (see below) that provide me the following result:
Table input
period
age_group
tot_dose
2021-01-18 00:00:00+01
0-4 yo
1
2021-03-08 00:00:00+01
05-11 yo
1
2022-01-03 00:0...

Hey StackExchange
Votes: 0
Answers: 2