0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

DB Browser for SQLiteのテーブル作成ダイアログ上でcreated_atを入力する方法

Posted at

課題

SQLiteはCREATE文でcreated_atを作る場合なら、

CREATE TABLE samples (中略, created_at TEXT NOT NULL DEFAULT (DATETIME('now', 'localtime')));

のようにするとインサート時に特に指定がなければ現在の時刻が入るようになります。
しかしながら、DB Browser for SQLiteのテーブル作成ダイアログのDEFAULT欄に

(DATETIME('now', 'localtime')) 

と入力すると、自動でクォーテーションで括られて

'(DATETIME(''now'', ''localtime''))'

のようになってしまいます。

解決

どうすればいいかというと単純で、

=(DATETIME('now', 'localtime'))

というように頭にイコールをつければ良いです。

Excelみたいな感じですね。
以前はやり方知らなくてわざわざSQLで追加してたので、同じ事で困っている人や将来の自分に向けて記事にしておきます。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?