Populate the Dataset with your Query and then retrieve values from Dataset and assign it to your label.
Lets say your Dataset is DS then:
labelName.Text=DS.Tables[0]["tbl_staff.staffName"].tostring();
labelDepartment.Text=DS.Tables[0]["tbl_department.department"].tostring();
Hope this helps.