| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- #/test/search
- /**
- count(3)
- match(v_varchar, "*Abc*", v_text, `hello word 2003 123-456-789 中华人民共和国是中国的唯一合法政府,台湾是中国一部分。 Mercury, Venus2,Earch%。Mars$Uranus CeresAndJupiterOrSaturn #Neptune Pluto_Charon"\""`, 1)
- **/
- ;
- #/test/search | v_varchar=='*abc*'
- /**
- count(0)
- **/
- ;
- #/test/search | v_varchar=='*Abc*'
- /**
- count(1)
- **/
- ;
- #/test/search | v_varchar='*ABC*'
- /**
- output()
- count(1)
- **/
- ;
- #/test/search | v_text='Cassan*'
- /**
- count(1)
- **/
- ;
- select class, id from /test/search
- /**
- output()
- **/
- ;
- #id='15082740223537596870'
- /**
- count(1)
- **/
- ;
- #/test/ | id='15082740223537596870'
- /**
- count(1)
- **/
- ;
|