אלקטרודה חשמלית
New member
שאילתה מורכבת ב-ACCESS
יש לי שאילתא שעובדת ב-SQL ואני צריכה להמיר אותה ל-ACCESS ואני מקבלת שגיאה שיש JOIN מורכב מידי... השאלה שלי היא איך עושים SELECT מתוך SELECT ב- ACCESS (השאילתה ב-SQL: )
יש לי שאילתא שעובדת ב-SQL ואני צריכה להמיר אותה ל-ACCESS ואני מקבלת שגיאה שיש JOIN מורכב מידי... השאלה שלי היא איך עושים SELECT מתוך SELECT ב- ACCESS (השאילתה ב-SQL: )
FROM EstimationEvent INNER JOIN StudentEstimationEvents ON EstimationEvent.ID = StudentEstimationEvents.EstimationEventID INNER JOIN EstimationEventComponents ON EstimationEvent.ID = EstimationEventComponents.EstimationEventID INNER JOIN EduGroupStudents INNER JOIN Students ON EduGroupStudents.StudentID = Students.ID ON StudentEstimationEvents.StudentID = Students.ID LEFT OUTER JOIN StudentComponentEstimationEvent ON EstimationEventComponents.ID = StudentComponentEstimationEvent.EventComponentID AND Students.ID = StudentComponentEstimationEvent.StudentID WHERE (EduGroupStudents.EduGroupID = 1) AND (EstimationEvent.YearDivisionTypeID = 1) AND (EstimationEvent.EventType = 1)