Zend
ZF-100-500 · Question #192
A table named employees is given below: Which of the following statements would return the employees names , in ascending order, based on their last name and first name? Each correct answer…
The correct answer is A. select fname, lname from employees order by lname; D. select fname, lname from employees order by lname asc. See the full explanation below for the reasoning.
Question
A table named employees is given below: Which of the following statements would return the employees names , in ascending order, based on their last name and first name? Each correct answer represents a complete solution . Choose all that apply.
Exhibit
Options
- Aselect fname, lname from employees order by lname;
- Bselect fname, lname from employees order by lname desc;
- Cselect fname, lname from employees group by lname;
- Dselect fname, lname from employees order by lname asc;
How the community answered
(26 responses)- A81% (21)
- B8% (2)
- C12% (3)
Community Discussion
No community discussion yet for this question.
