Skip to content

Instantly share code, notes, and snippets.

@mtsd
Last active January 25, 2025 15:14
Show Gist options
  • Select an option

  • Save mtsd/4265641 to your computer and use it in GitHub Desktop.

Select an option

Save mtsd/4265641 to your computer and use it in GitHub Desktop.
SQLite snippets
/*
CREATE文における各種データ型の設定
擬似的にBOOLEAN型を設定
*/
CREATE TABLE IF NOT EXISTS tests (id INTEGER PRIMARY KEY AUTOINCREMENT,
memo TEXT,
image BLOB,
type INTEGER,
favorite BOOLEAN NOT NULL DEFAULT 0 CONSTRAINT testsFavorite CHECK (favorite IN (0, 1) OR favorite IS NULL),
createdAt DATETIME
);
/**
日付表示
*/
sqlite> select primaryKey, datetime(createdAt, 'unixepoch', 'localtime') from h_r_c_addresses;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment