Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
表 ' Curcommtb' 有列 ' DModify' 和 ' Count'
Curcommtb
DModify
Count
SQLite中以下sql的替代品是什么?
' select dateadd(day,count,DModify) from Curcommtb'
select dateadd(day,count,DModify) from Curcommtb
SQLite 日期函数
下面是您的查询的 SQLite 替代方案。
SELECT date(DModify,'+'|| count||' day') FROm Curcommtb
您可以使用日期功能,如:
SELECT date('now','+10 day');