我有两张这样的桌子。
Company
company_id int(11) not null auto_increment primary key,
name varchar(200) not null
Employee
employee_id int(11) not null auto_increment primary key,
company_id int(11) not null,
employee_name varchar(50) not null,
foreign key(company_id) references Company(company_id) on updade cascade on delete cascade
现在我想只使用访问员工信息以及公司信息
from Employee
与冬眠。我是hibernate的新手,我不知道将使用哪种方法。连接表,主键连接或任何其他。请帮忙。