在cassandra
中存储日期时间的数据类型是什么 "exclude": [
"node_modules",
"bower_components",
"typings/index.d.ts",
"typings/modules"
],
我的插入物就像这样,
CREATE TABLE testTable (
dateValue date,
time timestamp
)
我想存储日期&时间都在一列中,如'2015-12-30 16:10:31'。 但是,如果我使用时间戳,它会像这样存储'2015-12-30 04:10:31 + 0530'
备注:主键n其他内容在此处跳过...忽略它。
答案 0 :(得分:1)
默认情况下,Cqlsh将以下列格式显示时间戳:
yyyy-mm-dd HH:mm:ssZ
这些格式的Z是指RFC-822 4位数时区, 如果没有提供时区,则为Cassandra的当前时区 将使用服务器节点。
因此,如果您不想以这种方式存储,则可以将其存储为varchar。