22.float2.mql 333 B

123456789101112131415161718192021222324252627282930
  1. select * from /test/basic2 where v_float >= 1.1
  2. /**
  3. count(3)
  4. **/
  5. ;
  6. select * from /test/basic2 where v_float > 1
  7. /**
  8. count(3)
  9. **/
  10. ;
  11. select * from /test/basic2 where v_float = 1.1
  12. /**
  13. count(3)
  14. **/
  15. ;
  16. select * from /test/basic2 where v_float < 2
  17. /**
  18. count(3)
  19. **/
  20. ;
  21. select * from /test/basic2 where v_float <= 1.1
  22. /**
  23. count(3)
  24. **/
  25. ;