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.
我有一个帖子表,其中包含字段post_id和总计(计数器字段),其中存储了一天的帖子的观众人数。如何使用cqlengine orm 获取帖子的总观众人数?一个以 cassandra 作为后端的 Flask 应用程序
我现在做到了:
Posts.objects.filter(post_id=11)
它过滤了 id=11 的帖子的所有行,如何从这些行中找到总计(列名)的总和?
您必须向计数器表发送另一个查询以获取此 id 的计数器值,然后计算两个结果。您可以尝试这种方式..