Problem Description

From Orders(order_id, order_date), show the latest 10 orders. Sort by order_date (newest first). If dates are same, you can sort by order_id too.

Input Format

SQL query

Output Format

Result set

Sample Test Case

Input:
Orders(order_id, order_date)
Output:
Top 10 rows

Constraints

Think: ORDER BY + LIMIT

Solutions (0)

No solutions submitted yet. Be the first!

Discussion (0)

No comments yet. Start the discussion!

Prev Next