我在IBM websphere 8.5.5.2中有Java SDK 6.我在哪里可以在IBM网站上下载Java SDK 7.1并将其更新到websphere.
我试过谷歌,找不到更新Java SDK 7.1所需的信息.我可以从Installation Manager更新它,还是应该从IBM下载任何文件?
我在 cassandra 表中存储了时间戳类型列的值,格式为 2018-10-27 11:36:37.950000+0000(GMT 日期)。当我运行下面的查询来获取数据时,我得到Unable to coerce '2018-10-27 11:36:37.950000+0000' to a formatted date (long) 。
select create_date from test_table where create_date='2018-10-27 11:36:37.950000+0000' allow filtering;
Run Code Online (Sandbox Code Playgroud)
如果数据已存储在表中(格式为 2018-10-27 11:36:37.950000+0000)并且还对create_date列执行范围(>= 或 <=)操作,如何使查询工作?
我create_date='2018-10-27 11:36:37.95Z',
create_date='2018-10-27 11:36:37.95' create_date='2018-10-27 11:36:37.95'也尝试过。
是否可以对这种时间戳类型的数据进行过滤呢?
PS 使用 cqlsh 在 cassandra 表上运行查询。