I need to use Java to display the name of the manager of any given department when I select said department from a drop down list.
The database is poorly designed and can't be changed, so the departments table only has the name of the department and the managerID, which is a foreign key to empID in the employees table, which also doesn't have names it, but does have the username of employees, which is a foreign key in the people table, which DOES have the first and last name of the employees. My understanding is that I'll need a double inner join to get that data to match up properly. However, I'm unaware of how to get the java working properly. Any help would be appreciated.