MySQL INSTR() 函数

实例

在字符串 "cankaoshouce.com" 中搜索 "3",并返回位置:

  1. SELECT INSTR("cankaoshouce.com", "3") AS MatchPosition;

定义与用法

INSTR() 函数返回一个字符串在另一个字符串中第一次出现的位置。

此函数执行不区分大小写的搜索。


语法

  1. INSTR( string1 , string2 )

参数值

参数描述
string1必填。将被搜索的字符串
string2必填。在 string1 中查找的字符串,如果 string2 没有找到, 这个函数返回 0

技术细节

版本:From MySQL 4.0

更多实例

实例

在字符串 "cankaoshouce.com" 中搜索 "COM",并返回位置:

  1. SELECT INSTR("cankaoshouce.com", "COM") AS MatchPosition;
实例

在 CustomerName 列中查询 "a",返回位置:

  1. SELECT INSTR(CustomerName, "a")
  2. FROM Customers;

分类导航