MySQL
Linux
Centos
Ubuntu
PHP
Windows
CSS3
帳號登入
MySQL
Linux
Ubuntu
CentOS
PHP
Windows
CSS3
編碼的世界 / 優質文選 /
歷史
MYSQL INDEXOF用法
2022年7月16日
-
書箋
from http://peter2009.iteye.com/blog/1181789
LOCATE(substr,str)
返回子串substr在字符串str第一個出現的位置,如果substr不是在str裏面,返回0.
Sql代碼
mysql> select LOCATE('bar', 'foobarbar'); -> 4 mysql> select LOCATE('xbar', 'foobar'); -> 0
熱門文章