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