You can join on the customer table one more time like shown below:SELECT a.CUSTOMER_NAME AS 'Customer Name', a.CUSTOMER_NO AS 'Customer #', b.SALES_ORDER_NO AS 'Sales Order #', b.SHIP_TO_ATTENTION AS 'Ship to Attention', c.CUSTOMER_NO AS BILLTO_CustomerNo, c.CUSTOMER_NAME AS BILLTO_CustomerNameFROM CUSTOMERS a JOIN SALES_ORDERS b ON b.CUSTOMER_NO = a.CUSTOMER_NO INNER JOIN CUSTOMERS c ON c.CUSTOMER_NO = b.BILL_TO_CUSTOMER_NO
If ther is a possibilty that BILL_TO_CUSTOMER_NO in the SALES_ORDERS table is null, then use LEFT JOIN instead of INNER JOIN.