softech
2 years agoGuide
query with date field
trying to find out posts between two dates in "message"
i have something like
https://mycommunity/api/2.0/search?q=SELECT%20post_time,%20post_time_friendly%20FROM%20messages%20WHERE%20ipost_time BETWEEN TWO dates
so, the query is pretty much
SELECT post_time, post_time_friendly FROM messages Where [post_time between two date]
i am open to use either post_time or post_time_friendly
But my question is how to fit in the 2 dates.
I tried different ways but none works
anyone can help?
thanks
Sign in to react to this post
softech To get the accurate results, you can use the following query.
select post_time, post_time_friendly from messages where post_time>=2024-04-01T00:00:00.000-00:00 and post_time <= 2024-05-01T23:59:59.999-00:00