| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- select * from /test/测试缓存库 where 整数 = 1
- /**
- count(3)
- **/
- ;
- select * from /test/测试缓存库 where 整数 > 0
- /**
- count(3)
- **/
- ;
- select * from /test/测试缓存库 where 整数 < 2
- /**
- count(3)
- **/
- ;
- select * from /test/测试缓存库 where 整数 >= 1
- /**
- count(3)
- **/
- ;
- select * from /test/测试缓存库 where 整数 <= 1
- /**
- count(3)
- **/
- ;
- select * from /test/测试缓存库 where 整数 >= 1.1
- /**
- count(0)
- **/
- ;
- select * from /test/测试缓存库 where 整数 > 1
- /**
- count(0)
- **/
- ;
|