I had prepared three queries
SELECT DepartmentID, DepartmentName FROM Departments UNION Select Null as AllChoice , "All Departments" as Bogus From Departments
ORDER BY DepartmentID; --- From Departments table
SELECT DepartmentID, EmployeeName
FROM Employees
UNION Select Null as AllChoice ...