Get startedGet started for free

Summarize numeric columns

Summarize the profit column in the fortune500 table using the functions you've learned.

You can access the course slides for reference using the PDF icon in the upper right corner of the screen.

This exercise is part of the course

Exploratory Data Analysis in SQL

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

-- Select min, avg, max, and stddev of fortune500 profits
SELECT ___,
       ___,
       ___,
       ___
  FROM ___;
Edit and Run Code