i need to make a group by clause with the following query:
SELECT NAME, SUM(donationvalue) FROM tbl_pdm2k10_Donations
GROUP BY NAME
ORDER BY SUM(donationvalue) desc
but i want a column on the left returning me: 1, 2, 3, 4, 5, etc as as result. In MSSql i would do
SELECT Row_Number() Over(order by SUM(donationvalue) desc), NAME, SUM(donationvalue)
FROM tbl_pdm2k10_Donations
GROUP BY NAME
is this possible?
set @row:=0;
SELECT
@row:=@row+1 as row_numer,
NAME,
SUM(donationvalue) as total
FROM tbl_pdm2k10_Donations
GROUP BY NAME
ORDER BY total desc
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With