SQLite equivalent of SQL Server DateAdd function SQLite equivalent of SQL Server DateAdd function sqlite sqlite

SQLite equivalent of SQL Server DateAdd function


From this link

Date And Time Functions

it would seem that you can use something like

date(timestring, modifier, modifier, ...) SELECT date('now','+14 day'); 

Does this seem correct to you?


The method Adriaan Stander gives result in GMT

You can do it in LocalTime like this

select DateTime('Now', 'LocalTime', '+1 Day');