| 12345678910111213141516171819202122232425262728293031323334353637 |
- select id,浮点 from /test/测试缓存库
- /**
- output()
- count(3)
- **/
- ;
- select * from /test/测试缓存库 where 浮点 >= 1.1
- /**
- count(3)
- **/
- ;
- select * from /test/测试缓存库 where 浮点 > 1
- /**
- count(3)
- **/
- ;
- select * from /test/测试缓存库 where 浮点 = 1.1
- /**
- count(3)
- **/
- ;
- select * from /test/测试缓存库 where 浮点 < 2
- /**
- count(3)
- **/
- ;
- select * from /test/测试缓存库 where 浮点 <= 1.1
- /**
- count(3)
- **/
- ;
|