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