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