Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 SQL Server 管理工作室。我有一个名为薪水的列。我想要另一个基于薪水的计算列:(salary *20%+salary)/85但我没有得到结果。
(salary *20%+salary)/85
我尝试将公式放在属性选项卡下的计算列规范选项卡中。
这是一个无效的 SQL 计算。
不要乘以百分比,而是除以 100 并乘以百分比值:
(((salary/100)*20)+salary)/85
您应该能够使用以下方法来计算该值:
(salary * 1.2) / 85
查看SQL 小提琴演示