30.fullsearch2.mql 443 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. select * from /test/basic2 where v_text like ?
  2. /**
  3. params("%2003%")
  4. output()
  5. count(1)
  6. **/
  7. ;
  8. select * from /test/basic2 where v_text='hello'
  9. /**
  10. count(1)
  11. **/
  12. ;
  13. select * from /test/basic2 where v_text='2003'
  14. /**
  15. count(1)
  16. **/
  17. ;
  18. select * from /test/basic2 where v_text='123-456-789'
  19. /**
  20. count(1)
  21. **/
  22. ;
  23. select * from /test/basic2 where v_text='中国'
  24. /**
  25. count(1)
  26. **/
  27. ;
  28. select * from /test/basic2 where v_text='magnitude'
  29. /**
  30. count(1)
  31. **/
  32. ;