I've got the 3 following tables:
Table1:
keyA; keyB; keyC; (primary key is A+B+C)
Table2:
keyA; keyC; (primary key is A+C)
Table3:
keyA; keyB; (primary key is A+B)
With hibernate xml mapping I want for my Table1 to be linked to both Table2 and Table3 using these keys. Can I do that?