我在timestamp
中有Cassandra table
列,如何使用cql从时间戳列中获取day of week
?
答案 0 :(得分:3)
开箱即用,但
如果必须使用CQL,您可以查看用户定义的函数:
http://cassandra.apache.org/doc/latest/cql/functions.html
http://www.datastax.com/dev/blog/user-defined-functions-in-cassandra-3-0
http://docs.datastax.com/en//cql/latest/cql/cql_using/useCreateUDF.html
然后你可以使用简单的东西:
How to determine day of week by passing specific date?
甚至是
之类的东西Aggregation with Group By date in Spark SQL
然后你有一个UDF,可以在你处理日期的时候给你一周中的一天。