So I'd like to store database entries in an Android SQLite db with a time component and then be able to later select entries between certain months or days with a calendar. What is the best way to do this? I thought about putting the date in the database in a year, month and day column so I use SQL commands to find a date range, but I'd like to do this the right way the first time. How would I later pull out data between two random dates? Thanks.
Mark