Verwenden Sie ein GROUP BY
Abfrage und Aggregatfunktionen
:
select username, count(*), sum(plus), sum(minus)
from your_table
where username = 'example'
group by username;
Verwenden Sie ein GROUP BY
Abfrage und Aggregatfunktionen
:
select username, count(*), sum(plus), sum(minus)
from your_table
where username = 'example'
group by username;