请帮助我维护两个以上桌子之间的关联关系。我将解释我现在面临的一个场景。 表1包含了我在应用程序中使用的所有代码,示例状态代码表示Active的代码为10,InActive的代码为20,这样我将维护所有代码, 表2列有5列,
column 1 is auto generated key
column 2 - has the id of table 1
column 3 - also has the id of table 1
column 4 - also has the id of table 1
column 5 - has description.
所以,我需要在从这两个表中检索数据的同时执行多个连接。我的问题是,是否正确地保留表格?
此外,我使用Spring with Hibernate从数据库中获取数据。关于如何使用Hibernate做任何想法? 请建议我这个。