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.
2 parents f7f434d + 2124b54 commit 5780c46Copy full SHA for 5780c46
docs/database/sql/sql-questions-01.md
@@ -1292,13 +1292,13 @@ order by c.cust_name;
1292
select c.cust_name, o.order_num
1293
from Customers c, Orders o
1294
where c.cust_id = o.cust_id
1295
-order by c.cust_name;
+order by c.cust_name,o.order_num;
1296
1297
# 显式内连接
1298
1299
from Customers c inner join Orders o
1300
using(cust_id)
1301
1302
```
1303
1304
### 返回顾客名称和相关订单号以及每个订单的总价
0 commit comments