Pergunta de entrevista da empresa Guidewire

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

Respostas da entrevista

Sigiloso

29 de ago. de 2019

Review SQL Join, LEFT OUTER JOIN, INNER JOIN

1

Sigiloso

21 de jan. de 2021

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