Il c64 lo zx spectrum e l'atari sono tutti preistoria... come me d'altronde
il problema lo risolvo comunque, l'altro problema e' la mia testardaggine
la query qryGuideCONTAORE che mi calcola le ore e' questa:
SELECT Anagrafe.ID_ANAGRAFE, Guide.COD_ANAGRAFE, Anagrafe.NOME, Sum(Guide.ORE) AS SommaDiORE
FROM Anagrafe LEFT JOIN Guide ON Anagrafe.ID_ANAGRAFE = Guide.COD_ANAGRAFE
WHERE (((Guide.ASSENTE)<>True))
GROUP BY Anagrafe.ID_ANAGRAFE, Guide.COD_ANAGRAFE, Anagrafe.NOME;
cosi' ottengo la somma del campo ore nella tabella Guide
ma vedo soltanto le anagrafiche dove ci sono ore ovvero dove ci sono records collegati in Guide
non vedo le anagrafiche a zero ore
se tolgo la condizione sul campo ASSENTE invece vedo tutte le anagrafiche anche quelle a zero ore... e' questo che non comprendo...
lo aggiro cosi:
SELECT Anagrafe.ID_ANAGRAFE, qryGuideCONTAORE.SommaDiORE
FROM Anagrafe LEFT JOIN qryGuideCONTAORE ON Anagrafe.ID_ANAGRAFE = qryGuideCONTAORE.COD_ANAGRAFE;
cioe' collegando la tabella Anagrafiche alla query qryGuideCONTAORE
in questo modo vedo tutte le anagrafiche, anche quelle a zero ore
ma il tormento rimane