Guidewire Interview Question

Write an SQL statement to select the customers from the table and the sales order number from another table.

Interview Answers

Anonymous

Aug 29, 2019

Review SQL Join, LEFT OUTER JOIN, INNER JOIN

1

Anonymous

Jan 21, 2021

select c.customerName o.orderNumber from table1 left join table2 ON c.custid = o.custid;