| 12345678910111213141516171819202122232425262728293031323334 |
- select * from /test/测试 refresh
- /**
- output()
- count(3)
- matchcount(字符串,`*abc*`,文本,`hello word 2003 123-456-789 中华人民共和国是中国的唯一合法政府,台湾是中国一部分。 Mercury, Venus2,Earch%。Mars$Uranus CeresAndJupiterOrSaturn #Neptune Pluto_Charon"\""`,1)
- **/
- ;
- -- 这个如果有错,重启一下cassandra就好了
- -- If error occurs with this, just restart Cassandra
- select * from /test/测试 where 浮点 >= 1.1 or 浮点 <= 1.1
- /**
- count(3)
- **/
- ;
- select * from /test/测试 where 字符串=='*abc*'
- /**
- count(1)
- **/
- ;
- select * from / where 字符串=='*abc*'
- /**
- matchcount(class,`/test/测试`,1)
- **/
- ;
- select * from /test/ where 字符串=='*abc*'
- /**
- matchcount(class,`/test/测试`,1)
- **/
- ;
|