SQLite3 avg関数を使って平均値を取得する
環境
Windows 10 Home 64bit
SQLite 3.39.2
構文
avg(カラム名)
平均値を取得するには、「avg」を使用します。
使用例
テーブル「student」というテーブルのカラム「age」を使用して実行します。
SQL構文
select city,avg(age) FROM student group by city;
Coding Changes the World
環境
Windows 10 Home 64bit
SQLite 3.39.2
構文
avg(カラム名)
平均値を取得するには、「avg」を使用します。
使用例
テーブル「student」というテーブルのカラム「age」を使用して実行します。
SQL構文
select city,avg(age) FROM student group by city;