Quantcast
Channel: What URL is closest to a given metric's average value?
Viewing all articles
Browse latest Browse all 5

What URL is closest to a given metric's average value?

$
0
0

Ta-da:

SELECT url, ABS(onLoad - avg) deviation FROM (
  SELECT url, onLoad, AVG(onLoad) OVER() avg  
  FROM [httparchive:runs.latest_pages])
ORDER BY deviation  
LIMIT 1;

Read full topic


Viewing all articles
Browse latest Browse all 5

Trending Articles