MySQL Tutorial

MySQL Tutorial MySQL Features MySQL Database Introduction MySQL Environmental Setup MySQL Data Types MySQL variable MySQL Advance table Query MySQL database queries MySQL Entity-Relationship Model MySQL Table Query MySQL Operators MySQL logical conditions MySQL Queries MySQL Clauses Clustered vs Non-Clustered Index MySQL Full text index MySQL Descending Index MySQL Invisible Index MySQL Composite Index MySQL Prefix index MySQL Index MySQL Create index MySQL Drop Index MySQL Show index MySQL Unique index MySQL Table MySQL Variable MySQL View MySQL Constraints MySQL Command Line Client Basic Queries MySQL Stored Procedure MySQL IF Statement MySQL Subquery MySQL Triggers

MySQL Join

MySQL Join MySQL CROSS JOIN MySQL DELETE JOIN MySQL EQUI JOIN MySQL INNER JOIN MySQL Union MySQL NATURAL JOIN MySQL RIGHT JOIN MySQL SELF JOIN MySQL UPDATE JOIN

MySQL Function

MySQL Function MySQL AVG() Function MySQL SUM() Function MySQL String() Function MySQL Advance() Function MySQL Aggregate() Function MySQL COALESCE() Function MySQL Control Flow Function MySQL COUNT() Function MySQL Date And Time Function MySQL GREATEST() Function MySQL ISNULL() Function MySQL LEAST() Function MySQL Math() Function MySQL MAX() Function MySQL MIN() Function MySQL find_in_set() function MySQL ASIN() Function MySQL CEIL() function MySQL CEILING() function MySQL TAN() Function MySQL Truncate() Function MySQL FLOOR() function MySQL LN() function MySQL LOG2() function MySQL LOG10() function MySQL MOD() function MySQL PI() function MySQL POW() function MySQL RADIANS() function MySQL RAND() function MySQL ROUND() function MySQL Character Length Function MySQL Current Date Function MySQL Date Add Function MySQL Date Format Function MySQL Datediff Function MySQL Day Function MySQL Elt Function MySQL Export Set Function MySQL Field Function MySQL Format Function MySQL From Base64 Function MySQL Hex Function MySQL Insert Function MySQL Instr Function MySQL Length Function MySQL CONCAT() function MySQL FIND_IN_SET() function MySQL LIKE() function MySQL LOAD_FILE() function MySQL LOCATE() function MySQL LOG() function MySQL MONTHNAME() function MySQL NOW() function MySQL PERIOD_ADD() function MySQL PERIOD_DIFF() function MySQL POWER() function MySQL QUARTER() function MySQL REVERSE() function MySQL RIGHT() Function MySQL RPAD() function MySQL RTRIM() function MySQL SEC_TO_TIME() function MySQL SOUNDEX() function

Questions

Which Clause is Similar to Having Clause in MySQL

Misc

MySQL Error 1046 - No Database Selected Failed to Start MySQL Service Unit MySQL Service Unit not Found Import MySQL Connector Mudule not Found Error No Module Named MySQL Joins Available in MySQL MySQL Docs MySQL Download For Windows 7 64 Bit MySQL Error Code 1064 MySQL Export MySQL History MySQL Host MySQL Import MySQL Drop All Tables MySQL Drop MySQL Error Code 1175 MySQL Events MySQL Except MYSQL Foreign Key Constraint MySQL If Exists MySQL IndexOf MySQL List All Tables json_extract in MySQL TIMESTAMPDIFF in MySQL MySQL Syntax Checker Sudo MySQL Secure Installation

MySQL LOCATE() function

In this context, we will learn how we can use the MySQL LOCATE() function with proper syntax and good examples.

Introduction of MySQL LOCATE() function

LOCATE() function in MySQL is used for finding the location of a substring in a string. It will return the location of the first occurrence of the substring in the string. If the substring is not present in the string, then it will return 0. When searching for the location of a substring in a string, it does not perform a case-sensitive search.

Syntax of the MySQL LOCATE() function

The syntax of the MySQL LOCATE() function is given as follows:

LOCATE(substr, str, start_pos)

Parameters or arguments used in MySQL LOCATE() function:

There are three parameters accepted by the LOCATE() function in MySQL, which are given as follows:

  • substr – The string whose position is to be retrieved.
  • Str – The string within which the position of the substring is to be retrieved.
  • Start_pos– The starting position for the search. It is optional. Position 1 is the default.

Returns:

It will return the location of the first occurrence of the substring in the string.

Application used for LOCATE() function:

The LOCATE() function can be used in the given below MySQL versions.:

  • MySQL 5.7
  • MySQL 5.6
  • MySQL 5.5
  • MySQL 5.1
  • MySQL 5.0
  • MySQL 4.1
  • MySQL 4.0
  • MySQL 3.23

Examples of MySQL LOCATE() function:

Now we will look into some MySQL LOCATE() function examples and will explore how we can use the LOCATE function in MySQL.

Example-1:

Here, we will Search the String 't' in the string 'javatpoint' with the help of LOCATE Function.

SELECT LOCATE('t', 'javatpoint') AS MatchLocation;

Output:

MATCHLOCATION
5
1 row in set (0.00 sec)

Example-2 :

Here, we will Search 'MYSQL' in the string 'Learning SQL is fun' with the help of LOCATE Function. So, it will return 0.

SELECT LOCATE('MYSQL,' 'Learning SQL is fun') AS MatchLocation;

Output :

MATCHLOCATION
0
1 row in set (0.00 sec)

Example-3 :

Here, we will Search the String 'p' in the string 'javatpoint' with the help of LOCATE Function starting from position 3.

SELECT LOCATE('p,' 'javatpoint,' 3) AS MatchLocation;

Output :

MATCHLOCATION
6
1 row in set (0.00 sec)

Example-4 :

When we need to locate the column data string, we can take the help of the LOCATE function. To demonstrate, we have created a table named Pupil.

CREATE TABLE Pupil
(
Pupil_id INT AUTO_INCREMENT,
Pupil_name VARCHAR(100) NOT NULL,
Roll INT NOT NULL,
Department VARCHAR(10) NOT NULL,
PRIMARY KEY(Pupil_id )
);

Inserting some data to the Pupil table.

INSERT INTO Pupil
(Pupil_name, Roll, Department )
VALUES
('Anik Biswas ', 10100, 'CSE'),
('Bina Mallick', 11000, 'ECE'),
('Aniket Sharma', 12000, 'IT' ),
('Sayani Samanta', 13000, 'ME' ),
('Riyanka Shah ', 14000, 'EE' ),
('Bipin Kohli', 15000, 'CE');

So, the Pupil Table is as follows.

SELECT * from Pupil ;
PUPIL_IDPUPIL_NAMEROLLDEPARTMENT
1Anik Biswas10100CSE
2Bina Mallick11000ECE
3Aniket Sharma12000IT
4Sayani Samanta13000ME
5Riyanka Shah14000EE
6Bipin Kohli15000CE

Now, we will find the first occurrence of the string 'a' in the Pupil_name column with the help of LOCATE function.

SELECT *, LOCATE('a', Pupil_name ) AS FirstOccurrenceOfA
FROM PUPIL;
PUPIL_IDPUPIL_NAMEROLLDEPARTMENTFirstOccurrenceOfA
1Anik Biswas10100CSE1
2Bina Mallick11000ECE4
3Aniket Sharma12000IT1
4Sayani Samanta13000ME2
5Riyanka Shah14000EE4
6Bipin Kohli15000CE0

Application of MySQL LOCATE() function:

This function is used to find a substring's location in a string.

Summary:

In the above context, we have learned how we can use the LOCATE() function in MySQL is used for finding the location of a substring in a string.