| 123456789101112131415161718192021222324252627282930313233343536 |
- select * from /test/basic3 where v_double >= 1.1234567890123456
- /**
- count(3)
- **/
- ;
- select * from /test/basic3 where v_smalldouble >= 1.123456
- /**
- count(3)
- **/
- ;
- select * from /test/basic3 where v_double > 1
- /**
- count(3)
- **/
- ;
- select * from /test/basic3 where v_double = 1.1234567890123456
- /**
- count(3)
- **/
- ;
- select * from /test/basic3 where v_double < 2
- /**
- count(3)
- **/
- ;
- select * from /test/basic3 where v_double <= 1.1234567890123456
- /**
- count(3)
- **/
- ;
|