| 123456789101112131415161718192021222324252627282930 |
- select * from /test/basic3 where v_text='*中*'
- /**
- count(1)
- **/
- ;
- select * from /test/basic3 where v_text=^'hell'
- /**
- count(1)
- **/
- ;
- select *from /test/basic3 where v_text='*20*'
- /**
- count(1)
- **/
- ;
- select * from /test/basic3 where v_text='*123-456*'
- /**
- count(1)
- **/
- ;
- select * from /test/basic3 where v_text='*magni*'
- /**
- count(1)
- **/
- ;
|