Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不知道如何创建这个过滤器。昨天下午 5 点之后但今天下午 5 点之前创建的所有问题。
我正在尝试这个,但它不起作用可能是因为我错了: created >= endOfDay(-7h) AND created <= startOfDay(17h)
您混淆了 endOfDay 和 startOfDay。下面的查询应该适合您。
created >= startOfDay(-7h) AND created <= startOfDay(17h) ORDER BY created ASC