28.prefix2.mql 344 B

123456789101112131415161718192021222324252627282930
  1. select * from /test/basic2 where v_text=^'hell'
  2. /**
  3. count(1)
  4. **/
  5. ;
  6. select *from /test/basic2 where v_text='*20*'
  7. /**
  8. count(1)
  9. **/
  10. ;
  11. select * from /test/basic2 where v_text='*123-456*'
  12. /**
  13. count(1)
  14. **/
  15. ;
  16. select * from /test/basic2 where v_text='*中*'
  17. /**
  18. count(1)
  19. **/
  20. ;
  21. select * from /test/basic2 where v_text='*magni*'
  22. /**
  23. count(1)
  24. **/
  25. ;