SELECT p.prod_name, i.order_num
FROM Products p
LEFT OUTER JOIN OrderItems i USING(prod_id)
ORDER BY p.prod_name