Sqlite3 betweenでデータに範囲を指定して取得する

環境
Windows 11 Pro 64bit
sqlite 3.37.1

構文
SELECT * FROM テーブル名 WHERE カラム BETWEEN 値1 AND 値2;
データに範囲を指定して取得するには、「select」に「where」に「between」を使用します。

使用例
テーブル「student」というテーブルのデータを「id」に範囲を指定して取得します。
select * FROM student where id between 12 and 44;

使用例2
「not」を使用すると、範囲外のデータが取得できます。
select * FROM student where id not between 32 and 44;

IT

Posted by arkgame