Skip to content Skip to sidebar Skip to footer

How Select A Period Of Date From Sqlite

I have a table in SQLite that has three fields (id, fromDate, toDate, uid). I want to select rows that has created in a specific dates. User select the period of time (from date/ t

Solution 1:

Sqlite does not have a Date type(supported types) There is some dateTime functions, i think that any of function will meet your requirement... The easier solution will be to convert you date to a timestamp and compare the timestamp.


Post a Comment for "How Select A Period Of Date From Sqlite"