13search.mql 309 B

12345678910111213141516171819
  1. select count(*) as count from /test/enum where v_enum = 1
  2. /**
  3. output()
  4. matchcount("count", 1, 1)
  5. **/
  6. ;
  7. select count(*) as count from /test/enum where v_enum = 'network'
  8. /**
  9. matchcount("count", 1, 1)
  10. **/
  11. ;
  12. select count(*) as count from /test/enum where v_enum = '软件'
  13. /**
  14. matchcount("count", 1, 1)
  15. **/
  16. ;