Я не знаю, почему этот запрос SQL не работает правильно, он возвращает те же записи без суммирования с использованием функции sum
select *, sum(VenteProduit.MontantHT) as 'TOTAL HT'
from RegFacture
inner join VenteProduit
on RegFacture.NumFacture = VenteProduit.NumFacture
group by VenteProduit.NumFacture,
RegFacture.NumFacture,
RegFacture.DateFacture,
RegFacture.ModePaiment,
RegFacture.DateEcheance,
RegFacture.TVA,
RegFacture.Devise,
RegFacture.MontantPayee,
RegFacture.RestMontant,
RegFacture.LieuLivraison,
RegFacture.incoterm,
RegFacture.Unite,
VenteProduit.RsClient,
VenteProduit.RefProduit,
VenteProduit.PrixVente,
VenteProduit.Quantitee,
VenteProduit.MontantHT