I have an integer column that holds a Unix epoch time value. I want to calculate if it falls within today.
For example, let today be the 24th day in the month. The query should return rows that fall on the 24th, but not ones that fall on the 23rd or some time before that.
Thanks for looking.
You can use the Julian day for this, as it could be "rounded" to the day boundary. See http://www.sqlite.org/lang_datefunc.html