如何使用嵌套查询选择 MAX 值?
这是简单的方法
SELECT MAX(Deliveries.QTY) AS QTY
FROM Deliveries
Additional info: I have this table Deliveries and one of the columns is Quantity (QTY) and I'd like to get the max value from that column but using some type of nested query.