In MySQL, the STD()
function returns the population standard deviation of a given expression.
STD()
is a synonym for the standard SQL function STDDEV_POP()
. There’s also a STDDEV()
function which also does the same thing, so we can use either of these functions to get the same result.