Forum Discussion
HariniVuppala
2 years agoExpert
keithkelly The below query might be helpful to you to get the unanswered topics count.
select count(*) from messages where conversation.solved=false and board.id="boardid" and depth=0 and post_time > 2024-02-01T00:00:00.000-00:00 and post_time < 2024-02-01T23:59:59.999-00:00
- DasariPrashanth2 years agoHelper
yes, this should work, but I think >=, <= should be used instead of >,< for post_time constraint