May 2020
Beginner
564 pages
14h 9m
English
For numeric functions, you can use the following sample syntax:
SELECT ROUND(AVG(col1),1) AS rounded_average, MAX(col1) AS maximum, MIN(g_all) AS minimum, FORMAT(COUNT(col1), 0) AS count_formatted, SUM(col1) AS sumFROM tablename;
For statistical functions, you can use the following sample syntax:
SELECT STDDEV(col1) AS 'standard_deviation', VARIANCE(col1) AS 'variance'FROM tablename;
Read now
Unlock full access