Skip to content
Advertisement

SQL – How to get the percentage of 2 sums

I am trying to get the CTR from uploads to clicks. How would I be able to get this percentage?

I am currently using the code below and I receive 0 as a result (view attached img).

Results:

Results

Advertisement

Answer

What you’re running into is integer division.

If you take 2 integers

Then clicks / uploads equals 1 – not 1.5 as you expect:

http://sqlfiddle.com/#!18/0ed4a9/8/0

As you can see from that fiddle, the way around this is to ensure that your values are cast/converted to floating point numbers before doing the division.

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement