Detect and ignore anomalous number in MySQL MIN/MAX query
I am trying to find the MIN and MAX of a simple data set.... Score 15 12 8 28 5 Simply doing this would work. SELECT MIN(Score) AS minScore, MAX(Score) AS maxScore FROM Scores; Which should return 5 and 28.…