bugl
bugl
HomeLearnPatternsSearch
HomeLearnPatternsSearch

Loading lesson path

Learn/SQL/SQL References
SQL•SQL References

MySQL POSITION() Function

Concept visual

MySQL POSITION() Function

Pointer walk
two pointers
leftright102132436485116
left=0
right=6
1
3

Start at both ends

Example

Search for "3" in string "W3Schools.com", and return position:

SELECT POSITION("3" IN "W3Schools.com") AS MatchPosition;

Definition and Usage

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.

Formula

This function performs a case - insensitive search.

Note:

The LOCATE() function is equal to the

POSITION() function.

Syntax

Position(

substring IN string )

Parameter Values

Parameter

Description substring

Required. The substring to search for in string string Required. The original string that will be searched

Technical Details

Works in:

From MySQL 4.0

More Examples

Example

Search for "COM" in string "W3Schools.com", and return position:

SELECT POSITION("COM" IN "W3Schools.com") AS MatchPosition;

Example

Search for "a" in CustomerName column, and return position:

SELECT POSITION("a" IN CustomerName)
FROM Customers;

Previous

❮ MySQL Functions

Next

Previous

MySQL MID() Function

Next

MySQL REPEAT() Function