So just include the tables, and the fields in the query.
SELECT Inventory.employeeID, Inventory.Name, Inventory.Department Parameters.ParamName
FROM Inventory, Parameters
But what if I need only certain rows from the Parameters to be included depending on what the department is?
My parameters...