Hi Guys, I have a query that is as follow:
SELECT [Jour de visite].Sem, [Jour de visite].NoES, [Jour de visite].Nom, [Jour de visite].Prénom, [Étudiant de Rosemont TAD].NoER
FROM [Unique étudiant], [Jour de visite] INNER JOIN [Étudiant de Rosemont TAD] ON [Jour de visite].Sem = [Étudiant de Rosemont TAD].Jour
GROUP BY [Jour de visite].Sem, [Jour de visite].NoES, [Jour de visite].Nom, [Jour de visite].Prénom, [Étudiant de Rosemont TAD].NoER;
The problem is that where for the NoES and the NoER the day of the week is equal, then for each NoES, I got all the NoER that are on the same day, but I only want one NoER for each NoES since NoER AND NoES are people and i need to match 1 to another 1.
Been 2 week im stuck on this, any help would be greatly appreciated!
SELECT [Jour de visite].Sem, [Jour de visite].NoES, [Jour de visite].Nom, [Jour de visite].Prénom, [Étudiant de Rosemont TAD].NoER
FROM [Unique étudiant], [Jour de visite] INNER JOIN [Étudiant de Rosemont TAD] ON [Jour de visite].Sem = [Étudiant de Rosemont TAD].Jour
GROUP BY [Jour de visite].Sem, [Jour de visite].NoES, [Jour de visite].Nom, [Jour de visite].Prénom, [Étudiant de Rosemont TAD].NoER;
The problem is that where for the NoES and the NoER the day of the week is equal, then for each NoES, I got all the NoER that are on the same day, but I only want one NoER for each NoES since NoER AND NoES are people and i need to match 1 to another 1.
Been 2 week im stuck on this, any help would be greatly appreciated!