1
My goal is to show 1 email with 1 total but I’m having difficulty I’ve tried that code:
SELECT DISTINCT email, totalcopias FROM dados
https://i.stack.imgur.com/IkU71.png
And I also tried this one:
SELECT DISTINCT email, totalcopias FROM dados GROUP BY email
https://i.stack.imgur.com/qa31d.png
But I’m not getting the totals together.
wanted [email protected] to show a value like [email protected] being the only ones with values
– AvicT