Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ Mean values | Aggregating
SQL Basics
セクション 3.  3
single

single

bookMean values

メニューを表示するにはスワイプしてください

The next function we will talk about - is mean. Mean (average) is probably one of the most simple and usable statistics in real life.

For example, for our audi_cars table, we can calculate the average mileage for cars manufactured in 2020. To calculate the average use AVG function followed by column name.

123
SELECT AVG(mileage) FROM audi_cars WHERE year = 2020
copy
タスク

スワイプしてコーディングを開始

Using table audi_cars calculate the average price of the A4 model manufactured in 2018.

解答

Switch to desktop実践的な練習のためにデスクトップに切り替える下記のオプションのいずれかを利用して、現在の場所から続行する
すべて明確でしたか?

どのように改善できますか?

フィードバックありがとうございます!

セクション 3.  3
single

single

AIに質問する

expand

AIに質問する

ChatGPT

何でも質問するか、提案された質問の1つを試してチャットを始めてください

some-alt