Multiple choice technology databases Top N analysis requires _____ and ______?(Choose two) the use of rowed a GROUP BY clause an ORDER BY clause only an inline view an inline view and an outer query Reveal answer Fill a bubble to check yourself C,E Correct answer Explanation Top-N queries need sorted data (ORDER BY) and a way to limit results - typically using an inline view with ROWNUM (Oracle) or LIMIT/FETCH (other databases) plus an outer query. Inline views are standard; GROUP BY is for aggregation.