1
Explanation
You can use the aggregation function SUM()
to sum the values and group the results by the name of the products with the clause GROUP BY
.
Query
SELECT
nome_produto [Nome do Produto],
SUM(valor_produto) [Valor Total]
FROM
produtos_vendidos
GROUP BY
nome_produto
You can put your sentence on the question?
– Leonel Sanches da Silva
Place the structure of your table
– David Schrammel