instr函数mysql怎么写 mysql instr函数用法

主机教程 建站分享 2年前 (2022-11-30) 175次浏览

文章摘要:instr函数mysql怎么写 mysql instr函数用法

instr函数在mysql中的用法 语法: INSTR(str,substr) 注: str:从哪个字符串中搜 […]

instr函数在mysql中的用法

语法:

INSTR(str,substr)

注:

str:从哪个字符串中搜索

substr:要搜索的子字符串

sql语句如下:

# 将instr结果作为一列,并按其排序

select id,1 from world_guide where id = 32

union

select * from

(select id, instr('30,35,31,',id+',') as d from

world_blog where id in (30,35,31) order by d) as t;


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:instr函数mysql怎么写 mysql instr函数用法
文章链接:http://www.7966.org/post/13835.html
转载请注明出处

喜欢 (0)