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

29 Aug 2019

Review SQL Join, LEFT OUTER JOIN, INNER JOIN

1

Anonymous

21 Jan 2021

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