FROM Student, Stat [Group]
Is there a komma missing between the two table names Stat and Group? So [GROUP] acts as an object alias.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
SELECT Student.FirstName, Student.LastName, Student.Surname,[Group].NameGroup
Stat.NameStat
FROM Student, Stat [Group]
WHERE Student.StatID = Stat.ID AND Stat.NameStat = 'Жінка'
AND Student.GroupID = [Group].ID AND [Group].NameGroup = 'IT-31'
FROM Student, Stat [Group]
Is there a komma missing between the two table names Stat and Group? So [GROUP] acts as an object alias.