| 1234567891011121314151617181920212223242526272829303132333435363738 |
- select * from /test/basic2 where v_text like ?
- /**
- params("%2003%")
- output()
- count(1)
- **/
- ;
- select * from /test/basic2 where v_text='hello'
- /**
- count(1)
- **/
- ;
- select * from /test/basic2 where v_text='2003'
- /**
- count(1)
- **/
- ;
- select * from /test/basic2 where v_text='123-456-789'
- /**
- count(1)
- **/
- ;
- select * from /test/basic2 where v_text='中国'
- /**
- count(1)
- **/
- ;
- select * from /test/basic2 where v_text='magnitude'
- /**
- count(1)
- **/
- ;
|