SQLite

環境
Windows 10 Home 64bit
SQLite 3.39.2

構文
max(カラム名)
maxを使って、テーブルのカラムの最大値を取得します。

使用例
テ ...

SQLite

環境
Windows 10 Home 64bit
SQLite 3.39.2

方法1
「/*」と「*/」を使用して複数行をコメントアウトします。
操作例

/*行1行2...*/

方 ...

SQLite

環境
Windows 10 Home 64bit
SQLite 3.39.2

構文
select * from sqlite_master;
sqlite_masterを利用してテーブルのス ...

SQLite

環境
Windows 10 Home 64bit
SQLite 3.39.2

構文
select * from sqlite_sequence where name = ‘テーブル名&# ...

SQLite

環境
Windows 10 Home 64bit
SQLite 3.39.2

構文
sum(カラム名)
sum関数を使ってテーブルの指定カラム名の合計値を取得します。

使用例 ...

SQLite

環境
Windows 10 Home 64bit
SQLite 3.39.2

構文
random()% 数値
randomを使用して乱数を生成します。
範囲を指定して取得する場合は「 ...

SQLite

環境
Windows 10 Home 64bit
SQLite 3.39.2

構文
drop table テーブル名;
drop tableを使用してテーブルを削除します。

使用 ...

SQLite

環境
Windows 10 Home 64bit
SQLite 3.39.2

構文
avg(カラム名)
avgを使用してテーブルのカラム名の平均値を取得します。

使用例

SQLite

環境
Windows 10 Home 64bit
SQLite 3.39.2

構文
SELECT * FROM テーブル名 WHERE カラム名 like ‘%エスケープ文字_%R ...

SQLite

環境
Windows 10 Home 64bit
SQLite 3.39.2

書式
max(カラム名)
max関数を使ってテーブルのカラムの最大値を取得します

使用例
テ ...

SQLite

環境
Windows 10 Home 64bit
SQLite 3.39.2

書式
SELECT カラム名1, カラム名2,… FROM テーブル名 GROUP BY カラム名1, カラ ...

SQLite

環境
Windows 10 Home 64bit
SQLite 3.39.2

書式
CREATE TABLE テーブル名(カラム名 integer primary key AUTOINCREMENT ...

SQLite

環境
Windows 11 Pro 21H2 64bit
SQLite 3.36.0

書式
SELECT カラム名 AS 別名,カラム名2 AS 別名2,… FROM テーブル名; ...

SQLite

環境
Windows 11 Pro 21H2 64bit
SQLite 3.36.0

構文
.table
テーブルを一覧を確認します。

実行結果
sqlite> . ...

SQLite

環境
Windows 11 Pro 21H2 64bit
SQLite 3.36.0

方法1
下記のコマンドでバージョンを確認します
sqlite3 -version
結果

C ...

SQLite

環境
Windows 11 Pro 21H2 64bit
SQLite 3.36.0

構文
UPPER(文字列)
「UPPER」を使用してアルファベットの小文字を大文字に変換します。 ...

SQLite

環境
Windows 11 Pro 21H2 64bit
SQLite 3.36.0

構文
CREATE TABLE テーブル名(カラム名 PRIMARY KEY);
「primary ke ...

SQLite

環境
Windows 10 Home 64bit
SQLite 3.39.2

構文
SELECT * FROM テーブル名 WHERE カラム IN(値1,…);
where i ...