0
MySQLで検索の並行番号を特定する関数はありますか?MySQLフィールドで文字列を検索する
例:
lcString = "My name-is-Harry-Potter"
Visual FoxProでは、これを使用することができます:
?AT('a',lcString,1) && where 1 means "get me the first concurrence"
OutPut = 5
または私はMySQLで同様の機能を探していた
?AT('-',lcString,3) && where 3 means "get me the third concurrence"
OutPut = 17
が、私はできませんそれを見つける。
ありがとうございました... !!!