bugl
bugl
HomeLearnPatternsPathsSearch
HomeLearnPatternsPathsSearch

Loading lesson path

Learn/SQL/SQL References
SQL•SQL References

MySQL LOCATE() Function

Flash cards

Review the key moves

1/4
Core idea

What is the main idea behind MySQL LOCATE() Function?

Lesson checks

Practice each idea before moving on

Short Mimo-style checks built from this lesson's code, terms, and sequence.

1Quick choice

Which statement best captures the main point of this lesson?

2Fill blank

Complete the missing token from the example code.

___ LOCATE("3", "ExampleSite.com") AS MatchPosition;
3Order

Put the learning moves in the order that makes the concept easiest to apply.

The LOCATE() function returns the position of the first occurrence of a substring in a string.
Definition and Usage
MySQL LOCATE() Function

Example

SELECT LOCATE("3", "ExampleSite.com") AS MatchPosition;

Definition and Usage

The LOCATE() 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

This function is equal to the POSITION() function.

Syntax

LOCATE(
substring
,
string
,
start
)

Parameter Values

ParameterDescription
substringRequired. The substring to search for in string
stringRequired. The string that will be searched
startOptional. The starting position for the search. Position 1 is default

Technical Details

Works in:From MySQL 4.0

Previous

MySQL LENGTH() Function

Next

MySQL LOWER() Function