Skip to content

Commit 83e13ca

Browse files
committed
auto commit
1 parent 534e81f commit 83e13ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

notes/SQL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@ FROM tablea AS A NATURAL JOIN tableb AS B;
483483
检索所有顾客的订单信息,包括还没有订单信息的顾客。
484484

485485
```sql
486-
SELECT Customers.cust_id, Customer.cust_name, Orders.order_id
486+
SELECT Customers.cust_id, Orders.order_num
487487
FROM Customers LEFT OUTER JOIN Orders
488488
ON Customers.cust_id = Orders.cust_id;
489489
```

0 commit comments

Comments
 (0)