I have a base group for the expression / avg:
select url, avg(contentping+tcpping), count(*) from websites ws, ping pi
where ws.idwebsite = pi.idwebsite and errortype is null
group by url order by avg(contentping+tcpping) asc;
Now I want to discard any results that have a higher average ping of 500. How can I do this ...?
source
share