我正在尝试编写一个sqlite语句,该语句从表中返回一个日期,其中包含从另一列添加的特定天数。日期存储为YYYY-MM-DD HH:mm:ss
,天数存储为整数。
我有
SELECT strftime('%Y-%m-%d %H:%M:%S' ,
strftime('%s',transactions.date)+repeattransactions.interval*24*60*60)
FROM transactions,repeattransactions
但这增加了几年和各种各样的数量。不知道我是否可以获得一些帮助来添加日期并以相同的格式输出它?
感谢。
答案 0 :(得分:6)
$ sqlite3
SQLite version 3.7.7 2011-06-23 19:49:22
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> create table t (tdate, tinterval);
sqlite> insert into t values ('2011-09-08 11:11:11', 5);
sqlite> select datetime(t.tdate,'+'||t.tinterval||' days') from t;
2011-09-13 11:11:11