I have a column with bytes, and another with milliseconds. And I must calculate average bitrate in bits per second.
I'm doing this:
SELECT AVG(Bytes*8)/AVG(Milliseconds/1000)
FROM Tracks
Apparently it is wrong. I'm using an app with exercises
I have this result
254492.61
And should be
254400.25