SQL Interview Question 190 || #sql #mysql #oracle #interview #shorts #reels #coding@SekharAcademy1
# Question-190:: Write an SQL query to calculate the median salary of employees? WITH MedianSalary AS ( SELECT salary, PERCENTILE_CONT(0.5) WITHIN GROUP (ORDER BY salary) OVER () AS median FROM…