sqlite3 テーブルのカラムにnot null制約を設定する方法
環境
Windows 10 Home 64bit
SQLite 3.39.2
構文
CREATE TABLE テーブル名(カラム名 integer NOT NULL, …);
NOT NULL」を指定してテーブルのカラムに制約を設定します。
使用例
「user」というテーブルのカラム「depno」を「not null」に設定します。
SQL構文
CREATE TABLE user(depno integer not null, depname text);