gpt4 book ai didi

sql - 如何在sql select语句中执行乘法

转载 作者:行者123 更新时间:2023-12-03 10:33:00 24 4
gpt4 key购买 nike

关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。












想改进这个问题?将问题更新为 on-topic对于堆栈溢出。

8年前关闭。




Improve this question




我如何编写 sql 查询来计算该表中每一行的年薪(月薪的 12 倍)?

id | msalary
01 | 323
02 | 5126
03 | NULL
04 | 2187
05 | NULL

输出
id | msalary |msalary*12 
01 | 323 |?
02 | 5126 |?
03 | NULL |?
04 | 2187 |?
05 | NULL |?

我如何通过排除空值来找到所有年薪的总和?

最佳答案

假设你的 table 是员工......这会给你你想要的。
select id, msalary, 12*msalary from employee
如果你想计算年薪的总和,这应该足够了......
select sum(12*msalary) from employee;
NULL 值将被自动忽略。

关于sql - 如何在sql select语句中执行乘法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20236975/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com