| 123456789101112131415161718192021222324252627282930313233343536 |
- select * from /test/测试 where 自定义类型 >= 1.1234567890123456
- /**
- count(3)
- **/
- ;
- select * from /test/测试 where 双浮点 >= 1.123456
- /**
- count(3)
- **/
- ;
- select * from /test/测试 where 自定义类型 > 1
- /**
- count(3)
- **/
- ;
- select * from /test/测试 where 自定义类型 = 1.1234567890123456
- /**
- count(3)
- **/
- ;
- select * from /test/测试 where 自定义类型 < 2
- /**
- count(3)
- **/
- ;
- select * from /test/测试 where 自定义类型 <= 1.1234567890123456
- /**
- count(3)
- **/
- ;
|