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)
How to Create View based on Column values
I have a table:
+------+----------+----------+-------+
| id | location | variable | value |
+------+----------+----------+-------+
| 1 | loc1 | outside | 30.6 |
| 2 | loc1 | inside ...
user117911
Votes: 0
Answers: 1
How to use groupBy in Pandas to sum total revenue of a customer
I'm working with a database but I'm having a problem with only one thing
The part I want to show is in the image below:
This database includes each customer and their respective plan, indicated by th...
Agenor
Votes: 0
Answers: 5
Max and Group by functions in SQL Server
my sql got a bit rusty and I was wondering if there is a simple solution for my ask. I'm trying to get two unique UUIDs with with MAX ModifiedTime. Below is my code that I tried to simplify as much as...

user7948585
Votes: 0
Answers: 3
Pandas group by multiple custom aggregate function on multiple columns
Given data:
grp
data1
data2
data3
a
2
1
2
a
4
6
3
b
3
2
1
b
7
3
5
Expected output:
grp
sum(data1)
sum(data2)/sum(data1)
sum(data3)/sum(data1)
a
6
1.166666667
0.83
a
10
0.5
...
Parshant garg
Votes: 0
Answers: 2