Please can anyone explain me what is the difference between the two statements,
SELECT [EmployeeStats].EmpName, [EmployeeStats].Desiganation,[TeamStats].TLGroupID,
[TeamStats].[Shift]
FROM [EmployeeStats],[TeamStats]
WHERE [EmployeeStats].TeamID = TeamStats.TeamID
And
SELECT [EmployeeStats].EmpName, [EmployeeStats].Desiganation [TeamStats].TLGroupID,
[TeamStats].[Shift]
FROM [EmployeeStats]
INNER JOIN [TeamStats]
ON [EmployeeStats].TeamID=TeamStats.TeamID