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.
ここに私が設定しているものがあります:
result = price / (case when tax = 0 then @tax1h / 100 else @tax2 / 100 end + 1)
値は次のとおりです。
price = 17.5 tax = 1 tax2 = 6
17.5 / (6 / 100 + 1) = 16.5
そして、これは 17.5 を返します。
整数除算:
select (6 / 100 + 1)
上記の結果は 1 です。
ただし、次の結果:
select (6 / 100.0 + 1)
1.06です。