• Like Derrick Leggett mentioned, figure it out !

    If your investigation points the symantics are OK, then you might use a case statement .

    declare @col1  integer

    declare @col2  integer

    declare @col3  integer

    select @col1 = 8, @col2 = 0, @col3 = 2

    select  @col1 / case when @col2 = 0 then 1 else @col2 end as first_division

    ,   @col1 / case when @col3 = 0 then 1 else @col3 end as second_division

    Johan

    Learn to play, play to learn !

    Dont drive faster than your guardian angel can fly ...
    but keeping both feet on the ground wont get you anywhere :w00t:

    - How to post Performance Problems
    - How to post data/code to get the best help[/url]

    - How to prevent a sore throat after hours of presenting ppt

    press F1 for solution, press shift+F1 for urgent solution 😀

    Need a bit of Powershell? How about this

    Who am I ? Sometimes this is me but most of the time this is me