Hi @ParthaSarathy ,
I have created two schemas having a one-to-many relationship with a common key deptid in both schemas.
I have added the following code in the Student table:
<element integrity="normal" label="Department" name="department" revIntegrity="normal"
revLabel="Students in Department" revLink="student" target="kbd:department"
type="link">
<join xpath-dst="deptid" xpath-src="deptid"/>
</element>
I have the following questions:
1.Is above code correct?
2. Is the above code added in the Student table correct?
3. Do I need to add code in the Department table as well? If yes, what will be the correct code?