Master Child Records September 29, 2021, 10:38:31 AM I have created below tables:TableName: StudentDataFiled Names:StudentID (AUTO INT)FullNameMobileNumberEmailIDAddressTableName: GradesFiled Names:GradeID (AUTO INT)StudentID (INT)MathGradePhysicsGradeScienceGradeStudentData table is my Master table and Grades is my child table. I have set relation on StudentID field. I am able to add record in StudentData table but when I add data in Grades table using relation the StudentID field of Grades automatically appears 0 and it does not shows under StudentData table as child recordPlease help Quote Selected
Re: Master Child Records Reply #1 – September 30, 2021, 12:04:21 PM @STEVENDISHA from your description you made grades the Master table in the Master-Details Relationship. From your table structure Master table, and with that you cannot add a master record from a details table. But you can add a details record from a master table. Quote Selected