| 123456789101112131415161718192021222324252627282930 |
- select count(*) as count from /test/sequence where v_text='hello'
- /**
- matchcount("count", 1, 1)
- **/
- ;
- select count(*) as count from /test/sequence where v_text='2003'
- /**
- matchcount("count", 1, 1)
- **/
- ;
- select count(*) as count from /test/sequence where v_text='123-456-789'
- /**
- matchcount("count", 1, 1)
- **/
- ;
- select count(*) as count from /test/sequence where v_text='中国'
- /**
- matchcount("count", 1, 1)
- **/
- ;
- select count(*) as count from /test/sequence where v_text='magnitude'
- /**
- matchcount("count", 1, 1)
- **/
- ;
|