Skip to content

Commit

Permalink
auto commit
Browse files Browse the repository at this point in the history
  • Loading branch information
CyC2018 committed May 26, 2020
1 parent 534e81f commit 83e13ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion notes/SQL.md
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ FROM tablea AS A NATURAL JOIN tableb AS B;
检索所有顾客的订单信息包括还没有订单信息的顾客

```sql
SELECT Customers.cust_id, Customer.cust_name, Orders.order_id
SELECT Customers.cust_id, Orders.order_num
FROM Customers LEFT OUTER JOIN Orders
ON Customers.cust_id = Orders.cust_id;
```
Expand Down

0 comments on commit 83e13ca

Please sign in to comment.