SQlite3 指定したカラムの最小値を取得する
環境
Windows11 pro 64bit
sqlite 3.37.1
構文
min(カラム名)
min関数を使って最小値を取得します。
使用例
テーブル「student」のカラム「age」を取得します。
SQL構文
select
min(age)
FROM student;
Coding Changes the World
環境
Windows11 pro 64bit
sqlite 3.37.1
構文
min(カラム名)
min関数を使って最小値を取得します。
使用例
テーブル「student」のカラム「age」を取得します。
SQL構文
select
min(age)
FROM student;