|
|
Question : Divide by Zero error in sql server
|
|
I m dividing two values in my query and multiply by 100 to get the % and for some records the bottom value is zero and i get divide by zero error. What's the best way or function to solve this problem?
I want to show 0.00% where the bottom value is zero.
Thanks
|
Answer : Divide by Zero error in sql server
|
|
This is better...
select cast(case when v2 = 0 then 0 else cast(v1 as decimal(10,2))/ cast(v2 as decimal(10,2)) * 100 end as decimal(10,2)) from yourtable
|
|
|
|
|