数値列を要約する
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.
この演習はコースの一部です
SQLによる探索的データ分析
実践的なインタラクティブ演習
このサンプルコードを完成させて、この演習に挑戦してみましょう。
-- Select min, avg, max, and stddev of fortune500 profits
SELECT ___,
___,
___,
___
FROM ___;