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

Mysql中 instr与concat

程序员文章站 2023-02-06 20:33:09
#INSTR(字符串, 子串),#返回值:第一个子串的索引-1#类似indexOf()#例如:SELECT INSTR('人民万岁,世界万岁','万')SELECT INSTR('人民万岁,世界万岁','中华') #INSTR(字段名, 字符串)#例如SELECT *,INSTR(DEPART,'系 ......

#instr(字符串, 子串),
#返回值:第一个子串的索引-1
#类似indexof()
#例如:
select instr('人民万岁,世界万岁','万')
select instr('人民万岁,世界万岁','中华')

#instr(字段名, 字符串)
#例如
select *,instr(depart,'系') instr from teacher where instr(depart,'系')>0

#concat(str1,str2,...)
#类似:连接字符串
select concat(tno,'_',tname) tno_name , t.* from teacher t

select t.* from teacher t where t.prof like concat('%','教','%')