I have a table of 8728 records, but I only want to do calculations for the bottom 99.9%, i.e. I can exclude the top 0.1%
I know I can't use 99.9 or 0.1 in the Select statement as TOP needs to be followed by an INT
So, I have calculated the number of records I want to use
(Round([NOf_East_Jitter]*0.999) AS CNOR which comes to 8719
But how do I put this calculated value into a Select statement?
I know I can't use 99.9 or 0.1 in the Select statement as TOP needs to be followed by an INT
So, I have calculated the number of records I want to use
(Round([NOf_East_Jitter]*0.999) AS CNOR which comes to 8719
But how do I put this calculated value into a Select statement?