When using the APPROX_PERCENTILE_DISC()
function in SQL Server, you may get an error that reads “The function ‘APPROX_PERCENTILE_DISC’ must have a WITHIN GROUP clause“. If you get this error, it’s because you omitted the WITHIN GROUP
clause when using the APPROX_PERCENTILE_DISC()
function.
To fix this issue, make sure you include the WITHIN GROUP
clause whenever you use the APPROX_PERCENTILE_DISC()
function.