Customers table with the Orders table using the customer's ID as the joining key.Orders customerId is NULL. This step will exclude all customers who have made an order.name column from the filtered result and alias it as 'Customers'.erDiagram
Customers {
int id PK
varchar name
}
Orders {
int id PK
int customerId FK
}
Customers ||--o{ Orders : places