SELECT 
    cust_name,
    order_num
FROM
    Customers c INNER JOIN Orders o ON
    c.cust_id = o.cust_id
ORDER BY
    cust_name,
    order_num;