I want tot make a total off `Gewerkte uren`in the following SQL Query:
select `KlantID`,
_klanten.`Bedrijfsnaam`,
`Adres`,
`Postcode`,
`Woonplaats`,
`Projectnaam`,
`Projectomschrijving`,
`Medewerker`,
`Gewerkte uren`
From `_klanten`
inner join _projecten
on _klanten.`Bedrijfsnaam` =_projecten.`Bedrijfsnaam`
inner join _uren
on _uren.`Project`=_projecten.`Projectnaam`
where _projecten.`status` = "Voltooid"
There are more dates with hours (Gewerkte Uren) on a Project. I want to Calculate the total off al off the Hours.
I have tried this:
SUM(Gewerkte uren) as Totaal gewerkte uren
But that don't work.
Please help me!!!