MySQL POSITION() function
POSITION() function
MySQL POSITION() returns the position of a substring within a string.
Syntax:
POSITION(substr IN str)
Arguments:
Name | Description |
---|---|
substr | A string whose position within another string (str) is to be retrieved. |
IN | Keyword. |
str | A string within which the position of the substring (substr) is to be retrieved. |
The above function is a synonym for LOCATE(substr,str).
MySQL Version: 5.6
Video Presentation:
Pictorial Presentation:
Example: MySQL POSITION() function
The following MySQL statement returns the position of the substring ‘ou’ within the string ‘w3resource’
Code:
>SELECT POSITION("ou" IN "w3resource");
Sample Output:
mysql> SELECT POSITION("ou" IN "w3resource"); +--------------------------------+ | POSITION("ou" IN "w3resource") | +--------------------------------+ | 6 | +--------------------------------+ 1 row in set (0.01 sec)
All String Functions
- Weekly Trends
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join
- JavaScript functions Exercises
- Python Tutorial
- Python Array Exercises
- SQL Cross Join
- C# Sharp Array Exercises