欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

mysql之locate(substr, str [, pos])

程序员文章站 2022-06-15 11:46:50
locate(substr, str [, pos]) 返回在pos位置之后,substr在str中出现的位置。若substr在str的pos位置之后没有出现,则返回0。...

locate(substr, str [, pos])

返回在pos位置之后,substr在str中出现的位置。若substr在str的pos位置之后没有出现,则返回0。

select locate('bing', 'wubinggo')    # ->3
select locate('bing', 'wubinggl', 2)
# ->3,不是3-2=1
select locate('bing', 'wubinggo', 3)
# ->0