Given the following statements: What will be the result? A. Joe Smith B. <name>Joe Smith</name> C. <name>Joe Smith></name><name>DB2</name> D. <employeeinfo><name>Joe Smith</name></employeeinfo>

Which SQL statement will retrieve the department number (WORKDEPT) and average departmental salary (SALARY) for all departments in a table named EMPLOYEE and arrange the result set in ascending order by average departmental salary? A. SELECT workdept, AVG(salary)FROM employeeORDER BY…