0
我想將從sqlite3數據庫中選擇的日期時間轉換爲unixepoch。我猜想,簡單的方法是在unixepoch中的數據庫中插入時間戳,但我寧願不要,因爲這會使我的數據庫不易讀。將sqlite3時間戳轉換爲python中的紀元時間
conn = sqlite3.connect('test.db')
c = conn.cursor()
c.execute('CREATE TABLE if not exists table_name (datetime text, column1 real, column2 real)')
cur.execute("INSERT INTO table_name VALUES (datetime(CURRENT_TIMESTAMP, 'localtime'),?,?)", data)
c.execute("SELECT datetime from table_name")
#here I would like to convert the above selection (datetime in localtime) to unixepoch
感謝您閱讀本文!