在向Riak TS查询时,我的电子邮件中包含@符号,因此它提供了一些问题,如
SQL Lexer error <<"Unexpected token '@'.">>
然后我们如何解决这个问题。
答案 0 :(得分:0)
使用以下查询。
SELECT SUM(steps),
registrationDate
FROM steps
WHERE
START >= 1482085800000
AND
START <= 1489775400000
AND userName = <<"hussain.shahzad250@gmail.com">>;
答案 1 :(得分:0)
特别是@Saranjith
现在查询将在下面给出
select start,end,steps from steps_record where start >= 1472495400000 and start <= 1490121000000 and userName = '<<"apolloprod120@gmail.com">>';
无论如何感谢@Saranjith,在我解决了这个问题后,我尝试了2-3种方法。