-1

I need to get the no of days by taking the date difference of one date confirmation date hard coded value and other with current date in sqlite.

MPelletier
  • 16,256
  • 15
  • 86
  • 137
Arun Kumar
  • 877
  • 3
  • 13
  • 37

1 Answers1

1
SELECT (julianday(Date('now')) - julianday(ConfirmationDate)) FROM [TABLE]
Tejo
  • 547
  • 4
  • 15