sqlite3 プライマリーキー(primary key)を設定する
環境
Windows 11 Pro 21H2 64bit
SQLite 3.36.0
構文
CREATE TABLE テーブル名(カラム名 PRIMARY KEY);
「primary key」を使用してプライマリーキーを設定します。
使用例
integer型をプライマリーキーにしたテーブル「usertbl」を作成します。
SQL構文
CREATE TABLE usertbl(useid integer primary key, username text);
実行例
C:\sqlite\sqlite3>sqlite3 test.sqlite3 SQLite version 3.36.0 2021-06-18 18:36:39 Enter ".help" for usage hints. sqlite> CREATE TABLE usertbl(useid integer primary key, username text);