Uploaded by Eric Chirum

STATISTICS IN SQL 1694011185

advertisement
Vimanyu Chaturvedi | LinkedIn
Variance and Standard Deviation
select month_of_year,
SUM(units_sold),
ROUND( AVG(units_sold),2),
ROUND(VAR_POP(units_sold), 2),
ROUND(STDDEV_POP(units_sold), 2)
Code FROM
store_sales GROUP BY
Month_of_year;
Output
Continuous Percentiles
Discrete Percentiles
Correlation Coefficients
Mode
Row Number
Intercepts
FOLLOW: Vimanyu Chaturvedi | LinkedIn
Download