How do I get the difference in days between 2 dates in SQLite? I have already tried something like this:
SELECT Date('now') - DateCreated FROM Payment
It returns 0 every time.
|
1
|
How do I get the difference in days between 2 dates in SQLite? I have already tried something like this: SELECT Date('now') - DateCreated FROM Payment It returns 0 every time. |
||
|
|
|
|
|
||
|
|
|
|
The SQLite wiki is a great reference and the DateAndTimeFunctions page is a good one to bookmark. It's also helpful to remember that it's pretty easy to play with queries with the sqlite command line utility:
|
||
|
|