I need to get the Sqlite date difference. I found a way like this
sqlite> SELECT julianday('now') - julianday('1776-07-04');
But this gives the output like this. 86798.7094695023
. I want to show it as 86798
the number of days only.
Please help me on this.