Domanda di colloquio di Guidewire

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

Risposte di colloquio

Anonimo

29 ago 2019

Review SQL Join, LEFT OUTER JOIN, INNER JOIN

1

Anonimo

21 gen 2021

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