0
Sds, I have a problem, I am not able to group the municipalities in my SELECT. Even with the group by the municipalities are separated. There are three different tables, municipality, product and unit. need to calculate total quantity and total value of 'Omeprazol 10mg' per municipality.
SELECT ( dbo.tb_municipio.des_municipio ),
Sum(dbo.tb_produto.qtd_produto) AS TOTAL_SOMA
,
( dbo.tb_produto.val_produto * dbo.tb_produto.qtd_produto ) AS
TOTAL_VALOR
FROM dbo.tb_municipio
INNER JOIN dbo.tb_unidade
ON dbo.tb_municipio.cod_municipio = dbo.tb_unidade.cod_municipio
INNER JOIN dbo.tb_produto
ON dbo.tb_unidade.cod_unidade = dbo.tb_produto.cod_unidade
WHERE des_produto = 'Omeprazol 10mg'
GROUP BY dbo.tb_municipio.des_municipio,
dbo.tb_produto.qtd_produto,
dbo.tb_produto.val_produto
this is the result that is giving, my goal is that it is all grouped, all salvador products in a single line.
des_muni Total Soma Total Valor
Salvador 80 25.60
Salvador 100 32.00
Salvador 5000 1600.00
SãoPaulo 30 15.00
If any information is missing, put in sequence
Thank you so much for your help!
– AdanMat