Date and time functions reference表示datetime(timestring, [modifiers...])等价于strftime('%Y-%m-%d %H:%M:%S', timestring, [modifiers...])。 如果你想要小数秒,你必须使用%f而不是%S。所以使用strftime('%Y-%m-%d %H:%M:%f', 'now')。
CREATE TABLE test (timestamp DATETIME);
INSERT INTO test VALUES(strftime('%Y-%m-%d %H:%M:%f', 'now'));
1条答案
按热度按时间lstz6jyr1#
Date and time functions reference表示
datetime(timestring, [modifiers...])
等价于strftime('%Y-%m-%d %H:%M:%S', timestring, [modifiers...])
。如果你想要小数秒,你必须使用
%f
而不是%S
。所以使用strftime('%Y-%m-%d %H:%M:%f', 'now')
。