如何通过Windows中的cassandra命令行界面插入系统日期和时间

时间:2013-10-29 11:40:33

标签: windows datetime cassandra cassandra-cli

我是cassandra的新手。 我想知道如何通过CLI(命令行界面)为特定行插入系统日期和时间。

DateType和TiemUUIDType只是用于此目的的数据类型,因此我如何使用这两种数据类型并通过内部/ CLI类型插入特定UUID的日期和时间。

提前致谢。

1 个答案:

答案 0 :(得分:1)

要输入与现在相对应的timeuuid,请使用timeuuid()功能,例如(taken from this example):

CREATE COLUMN FAMILY blog_entry
  WITH comparator = TimeUUIDType
  AND key_validation_class=UTF8Type
  AND default_validation_class = UTF8Type;

SET blog_entry['yomama'][timeuuid()] = 'I love my new shoes!';

要在datetime函数中输入时间戳,请使用unix时间戳,请参阅以下示例(taken from a related question),我们在其中将unix时间戳插入DateType列:

set test['userID']['dob']=567999912112;