是否有可能将舍入时间缩短到最近5分钟? 像这样的东西: 选择日期时间('现在') 返回2017-05-09 07:34:26
选择stuffcodesql 返回2017-05-09 05:00:00
答案 0 :(得分:1)
strftime('%s', 'now')
strftime('%s', 'now') % 300
select datetime(strftime('%s', 'now') - strftime('%s', 'now') % 300, 'unixepoch', 'localtime') as [5min];
答案 1 :(得分:0)
SELECT datetime(CAST(julianday('now') * 288 AS INTEGER) / 288.0);