@ 不支持 RIak Ts

@ is not supporting to RIak Ts

在查询 Riak TS 时,我的电子邮件包含 @ 符号,因此出现了一些问题,例如

SQL Lexer error <<"Unexpected token '@'.">>

然后我们如何解决这个问题。

使用下面的查询。

SELECT SUM(steps),
       registrationDate
FROM steps
WHERE
  START >= 1482085800000
  AND
  START <= 1489775400000
  AND userName = <<"hussain.shahzad250@gmail.com">>;

特别是@Saranjith

查询现在如下所示

select start,end,steps from steps_record where start >= 1472495400000 and start <= 1490121000000  and userName = '<<"apolloprod120@gmail.com">>';

无论如何,谢谢@Saranjith,我用你给定的语法尝试了 2-3 种方法,然后我解决了这个问题。