MS Access Sum() 函数
示例
返回 "OrderDetails" 表中 "Quantity" 字段的总和
SELECT Sum(Quantity) AS TotalItemsOrdered FROM OrderDetails;
自己尝试 »
定义和用法
Sum() 函数计算一组值的总和。
注意: NULL 值将被忽略。
语法
Sum(表达式)
参数值
参数 | 描述 |
---|---|
表达式 | 必需。字段或公式 |
技术细节
适用于 | 从 Access 2000 开始 |
---|
返回 "OrderDetails" 表中 "Quantity" 字段的总和
SELECT Sum(Quantity) AS TotalItemsOrdered FROM OrderDetails;
自己尝试 »
Sum() 函数计算一组值的总和。
注意: NULL 值将被忽略。
Sum(表达式)
参数 | 描述 |
---|---|
表达式 | 必需。字段或公式 |
适用于 | 从 Access 2000 开始 |
---|
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]