在SQLite中,可以使用CURRENT_TIMESTAMP
關(guān)鍵字來插入當(dāng)前時(shí)間戳。例如,以下是一個(gè)將當(dāng)前時(shí)間戳插入到表中的示例SQL語句:
INSERT INTO table_name (column_name1, column_name2, timestamp_column)
VALUES (value1, value2, CURRENT_TIMESTAMP);
在上面的示例中,timestamp_column
是包含時(shí)間戳的列。通過使用CURRENT_TIMESTAMP
關(guān)鍵字,可以將當(dāng)前時(shí)間戳插入到該列中。