Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Considerthe table STUDREC. Which query lists students who have children, ordered fromfewest to most children?
Consider
the table STUDREC. Which query lists students who have children, ordered from
fewest to most children?
SELECT
* FROM studrec ORDER BY kids DESC WHERE kids > 0;
* FROM studrec WHERE kids > 0 ORDER BY kids;
* FROM studrec ORDER BY kids WHERE kids > 0;
* FROM studrec WHERE kids > 0 ORDER BY kids DESC;
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!