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.
我必须找到两个数字之间的百分比差异。
我正在使用公式 AB/(A+B/2)
IE
select round( ( A-B)/(A+B/2)) from dual;
其中 a 和 b 是两个数字。现在,如果 a 和 b 为 0,则除数为零。在这种情况下,可以做些什么来避免错误?两个相等数字或 0 之间的百分比差异是多少?