ItIsHardToProgram
Technical User
Hey every one, I have been reading in the past hour to try and find a way to GROUP BY a LEFT(field,#).
i.e.:
the following works but I would like it to Group By ProjetSommaire, except it won't let me.
Thanks for your help.
"Knowing that you know is the greatest sign of stupidity, knowing that you are ignorant is the best proof of intelligence.
i.e.:
Code:
SELECT Left(T.IdProjet,7) AS ProjetSommaire, Sum(E.SalaireHoraire*(T.Lundi+T.Mardi+T.Mercredi+T.Jeudi+T.Vendredi+T.Samedi+T.Dimanche+T.LundiRD+T.MardiRD+T.MercrediRD+T.JeudiRD+T.VendrediRD+T.SamediRD+T.DimancheRD)) AS [Honoraire utilisé], t.IdEmployer
FROM tblTimeSheet AS T INNER JOIN tblEmployer AS E ON T.IdEmployer=E.IdEmployer
GROUP BY T.IdProjet, t.IdEmployer;
the following works but I would like it to Group By ProjetSommaire, except it won't let me.
Thanks for your help.
"Knowing that you know is the greatest sign of stupidity, knowing that you are ignorant is the best proof of intelligence.