In my Select statement I am trying to calculate a percentage by dividing IntA / IntB * 100 which is of course giving me the wrong answer because the result of IntA / IntB is being calculated as an integer instead of a float. Is there a way to cast them inline to a float or specify that the result needs to be a float? Thanks.