User bio
404 bio not found
Member since May 17, 2017
Posts:
Randy has not published any posts yet.
Replies:

I happened to need Median recently and came up with this solution.

SELECT TOP 1
    AVG(main.age) AS _Average,min(main.age) AS _Min,
    CASE WHEN %vid = count(main.age)/2 THEN main.age else 0 END+MAX(CASE WHEN %vid = count(main.age)/2 THEN main.age else 0 END) AS  _Median,
    max(main.age) AS _Max
FROM
(
SELECT TOP all a.Age FROM Sample.Person a
ORDER BY a.Age
) main
Certifications & Credly badges:
Randy has no Certifications & Credly badges yet.
Global Masters badges:
Randy has no Global Masters badges yet.
Followers:
Randy has no followers yet.
Following:
Randy has not followed anybody yet.