Search for "3" in string "91xjr.com", and return position:
SELECT POSITION("3" IN "91xjr.com") AS MatchPosition;
Try it Yourself »
The POSITION() function returns the position of the first occurrence of a substring in a string.
If the substring is not found within the original string, this function returns 0.
This function performs a case-insensitive search.
Note: The LOCATE() function is equal to the POSITION() function.
POSITION(
substring IN
string)
Parameter | Description |
---|---|
substring | Required. The substring to search for in string |
string | Required. The original string that will be searched |
Works in: | From MySQL 4.0 |
---|
Search for "COM" in string "91xjr.com", and return position:
SELECT POSITION("COM" IN "91xjr.com") AS MatchPosition;
Try it Yourself »
Search for "a" in CustomerName column, and return position:
SELECT POSITION("a" IN CustomerName)
FROM Customers;
Try it Yourself »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!