3
2

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.

[SQLite] 日付の扱い方

Posted at

日付の扱い方

SQLiteには、他のデータベースに存在するDATE型やDATETIME型のようなストレージクラスは存在しない。そのため、SQLiteでは日付をTEXT型、REAL型、INTEGER型として扱う必要がある。各型における値は以下となる。
TEXT
 ISO8601形式の文字列で保持する。("YYYY-MM-DD HH:MM:SS.SSS")
REAL
 ユリウス日数として保持する。
 紀元前4714年11月24日のグリニッジの正午からの日数。
INTEGER
 Unix時間として保持する。
 1970-01-01 00:00:00UTCからの秒数。

上記のように日付や時刻を扱える型はないが、日付や時刻を取得するdate()time()datetime()などの関数はある。
例えば、現在の日時を取得する場合は以下のように書ける。

datetime('now', 'localtime');

これでYYYY-MM-DD HH:MM:SSの形式で現在日時が取得できる。
ここで、localtimeを付けないとUTC時刻になってしまう。UTCとは協定世界時のことであり、日本標準時とは9時間の時差がある。
つまり日本標準時に直すには、UTC時刻から+9 hoursする必要がある。

参考

https://www.sqlite.org/datatype3.html

3
2
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
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?