简体   繁体   中英

Cassandra cql equivalent of over() from sql

Is there a cql equivalent of the sql over() window function? I need to use a window function to group data in my cassandra table and I can't find anything in the docs.

Cassandra has very limited support for aggregation functions. This specific function doesn't exist in the CQL. If you need to perform this operation over the data in Cassandra, then you can use Spark SQL Window functions on the data fetched via Spark Cassandra Connector .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM