We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83e13ca commit e6c3bf0Copy full SHA for e6c3bf0
docs/notes/SQL.md
@@ -483,7 +483,7 @@ FROM tablea AS A NATURAL JOIN tableb AS B;
483
检索所有顾客的订单信息,包括还没有订单信息的顾客。
484
485
```sql
486
-SELECT Customers.cust_id, Orders.order_num
+SELECT Customers.cust_id, Customer.cust_name, Orders.order_id
487
FROM Customers LEFT OUTER JOIN Orders
488
ON Customers.cust_id = Orders.cust_id;
489
```
notes/SQL.md
0 commit comments