MySQL

A Complete Guide to SUBSTRING_INDEX in SQL

intro

Learn how to use the MySQL SUBSTRING_INDEX function through some real-world examples.

Tools used in the tutorial
Tool Description Link
Dbvisualizer DBVISUALIZER
TOP RATED DATABASE MANAGEMENT TOOL AND SQL CLIENT

Learn how to use the MySQL SUBSTRING_INDEX function through some real-world examples.

String manipulation is such a common practice that most DBMS technologies expose functions to achieve both general and very specific goals. SUBSTRING_INDEX is one of them! This scenario-specific–yet extremely powerful–MySQL function enables you to perform string extraction with a single line of code. Is SUBSTRING_INDEX in SQL? Or is it only available in MySQL?

Read this article and find that out! You will discover everything you need to know about SUBSTRING_INDEX, exploring its syntax, how it works, and its use cases.

Let's dive in!

What Is SUBSTRING_INDEX in SQL?

SUBSTRING_INDEX is a MySQL function that returns a substring before a specified number of delimiter occurrences. This is not easy to understand at first, and it is better to see the function in action in an example. Consider the function call below:

Copy
        
1 SUBSTRING_INDEX('Hi! Hello, World!', '!', 1)

The output will be:

Copy
        
1 'Hi'

When changing the final argument from 1 to 2, the function call becomes:

Copy
        
1 SUBSTRING_INDEX('Hi! Hello, World!', '!', 2)

And the result will now be:

Copy
        
1 'Hi! Hello, World'

Basically, SUBSTRING_INDEX is like a virtual knife that slices a string. Your job is to say where it should stop slicing by specifying a special word or character and its occurrence index in the string.

How to Use the SUBSTRING_INDEX Function in MySQL

Here is the syntax of SUBSTRING_INDEX in SQL, as supported by MySQL:

Copy
        
1 SUBSTRING_INDEX(str, delimiter, count)
  • str: The string to extract the resulting substring from.
  • delimiter: The string delimiter to look for in str with a case-sensitive search.
  • count: The delimiter occurrence counter. If it is positive, the function returns everything to the left of the final delimiter (counting from the left). If it is negative, the MySQL function returns everything to the right of the final delimiter (counting from the right).

In other words, the SUBSTRING_INDEX MySQL-specific function returns the substring from string str before/after count occurrences of the string delimiter. In particular, it retrieves the substring “before” count occurrences, when count is positive:

Copy
        
1 SELECT SUBSTRING_INDEX('www.mysql.com', '.', 2); # 'www.mysql'
Getting the substring from the left
Getting the substring from the left

And “after” when count is negative:

Copy
        
1 SELECT SUBSTRING_INDEX('www.mysql.com', '.', -2); # 'mysql.com'
Getting the substring from the right
Getting the substring from the right

When delimiter does not appear in str, the function returns the original string:

Copy
        
1 SELECT SUBSTRING_INDEX('www.mysql.com', '?', 1); # 'www.mysql.com'
Note that the resulting string is equal to the original string
Note that the resulting string is equal to the original string

Similarly, if count is 0 or is greater than the number of occurrences in the string, it returns the original string:

Copy
        
1 SELECT SUBSTRING_INDEX('www.mysql.com', '.', 3); # 'www.mysql.com'
Again, same result as the original string
Again, same result as the original string

If delimiter is instead empty, SUBSTRING_INDEX returns an empty string:

Copy
        
1 SELECT SUBSTRING_INDEX('www.mysql.com', '', 1);
Note the empty result
Note the empty result

SUBSTRING_INDEX in SQL: Use Cases

A guide to SUBSTRING_INDEX in SQL would not be complete without some real-world use cases. Explore the most common ones!

Note: The queries in the examples below will be run in DbVisualizer, the database client

with the highest user satisfaction.

Extracting Domain from Email Addresses

Suppose you want to extract some data about users' favorite e-mail providers. This involves extracting the domain part (e.g., "example.com") from your users' e-mail addresses and counting them.

Here is how you can achieve that with SUBSTRING_INDEX in MySQL:

Copy
        
1 SELECT 2 SUBSTRING_INDEX(email, '@', -1) AS email_domain, 3 COUNT(*) AS email_domain_counter 4 FROM users 5 GROUP BY email_domain;

This query will retrieve the domain part after the "@" symbol from the email column in the users table, group by that, and count it:

Take a look at the domains in the resulting “email_domain” column
Take a look at the domains in the resulting “email_domain” column

Separating File Extensions from Filenames

Assume you have a file column in one of your tables, storing the name of some files. You want to separate the file extensions (e.g., ".pdf") from the filenames. Achieve that with the SUBSTRING_INDEX MySQL example query below:

Copy
        
1 SELECT file, 2 SUBSTRING_INDEX(file_path, '.', -1) AS file_extension 3 FROM reports;

That will produce the desired results:

Extracting the extensions from some filenames
Extracting the extensions from some filenames

Get Paths From URLs

Consider that you have a database with URLs and want to extract a specific part from them. For example, you want their domain. Instead of using a regular expression, you can concatenate two SUBSTRING_INDEX calls as follows:

Copy
        
1 SELECT url, 2 SUBSTRING_INDEX(SUBSTRING_INDEX(url, '://', -1), '/', 1) AS domain 3 FROM apis;

The query will first extract the part of the URL after the “://” characters. Then, it will select the part before the first “/” character, returning the desired URL domain data.

Selecting the domains in all scenarios
Selecting the domains in all scenarios

Wonderful! You now know how to adopt SUBSTRING_INDEX in SQL to extract specific parts of strings!

Conclusion

In this guide to SUBSTRING_INDEX in SQL, you learned what it is and how it works. This powerful MySQL string manipulation function helps you extract substrings based on a delimiter. The definition of the function is complex, but its use cases are very popular.

As the examples in this article demonstrate, you need a tool to visually explore query results to better appreciate the capabilities of the function. That is where a comprehensive database client such as DbVisualizer comes in! In addition to supporting several DBMSs, it offers advanced query optimization capabilities, ERD-type schema generation, and more. Try DbVisualizer for free today!

FAQ

Is SUBSTRING_INDEX part of the SQL standard?

SUBSTRING_INDEX is not part of the SQL standard. Instead, it is a string manipulation function available only in MySQL. Thus, do not expect SUBSTRING_INDEX to be available in other relational database management systems.

What is the SQL Server equivalent of SUBSTRING_INDEX?

The SQL Server equivalent of SUBSTRING_INDEX involves using a combination of functions like CHARINDEX, LEFT, and RIGHT to extract substrings based on delimiters. Keep in mind that there is not a direct equivalent function and achieving the same result may be tricky.

What is the SUBSTRING_INDEX PostgreSQL equivalent?

In PostgreSQL, you can achieve similar functionality to the MySQL SUBSTRING_INDEX function using a combination of string manipulation functions. You can use functions like POSITION, LEFT, and RIGHT to extract substrings based on delimiters, similar to how you would in SQL Server. Do not forget that there is no direct SUBSTRING_INDEX PostgreSQL equivalent.

What is the difference between SUBSTRING_INDEX and other string manipulation functions in SQL?

The main difference between SUBSTRING_INDEX and other string manipulation functions in MySQL, such as LEFT, RIGHT, and CONCATENATE, is that SUBSTRING_INDEX is specifically designed to extract substrings based on a specified delimiter. This makes it well-suited for tasks like splitting strings into parts or extracting portions before or after a delimiter. Other functions are more general-purpose and may require additional logic to achieve your specific goals.

Can SUBSTRING_INDEX handle cases where delimiters occur multiple times in a string?

Yes, SUBSTRING_INDEX in SQL can handle cases where delimiters occur multiple times in a string. It allows you to specify which occurrence of the delimiter to use when extracting the substring, making it versatile for handling various situations.

Dbvis download link img
About the author
Antonello Zanini

Antonello is a software engineer, and often refers to himself as a technology bishop. His mission is to spread knowledge through writing.

The Table Icon
Sign up to receive The Table's roundup
More from the table
Title Author Tags Length Published
title

SQL ORDER BY Clause: Definitive Guide

author Antonello Zanini tags MySQL ORACLE POSTGRESQL SQL SQL SERVER 7 min 2024-04-22
title

Adding Dates in SQL: A Complete Tutorial

author Antonello Zanini tags DATE DATETIME MySQL POSTGRESQL SQL SERVER 7 min 2024-04-15
title

Glossary of the SQL Commands You Need to Know

author Antonello Zanini tags MySQL ORACLE POSTGRESQL SQL SQL SERVER 12 min 2024-04-11
title

SUBSTRING_INDEX in SQL Explained: A Guide

author Lukas Vileikis tags MySQL SQL 8 min 2024-04-08
title

SQL NOT IN: the Good, Bad & the Ugly

author Lukas Vileikis tags MySQL SQL 7 min 2024-04-04
title

SQL Add to Date Operations: A Complete Guide

author Antonello Zanini tags DATE DATETIME MySQL ORACLE POSTGRESQL SQL SQL SERVER 6 min 2024-04-01
title

SQL CAST Function: Everything You Need to Know

author Antonello Zanini tags CAST MySQL ORACLE POSTGRESQL SQL SQL SERVER 7 min 2024-03-28
title

MySQL IFNULL – Everything You Need to Know

author Leslie S. Gyamfi tags IFNULL MySQL 6 min 2024-02-26
title

MySQL CREATE DATABASE Statement: Definitive Guide

author Antonello Zanini tags Create database MySQL 7 min 2024-02-08
title

Error: MySQL Shutdown Unexpectedly - The Solution

author Lukas Vileikis tags MySQL 5 MINS 2024-01-04

The content provided on dbvis.com/thetable, including but not limited to code and examples, is intended for educational and informational purposes only. We do not make any warranties or representations of any kind. Read more here.

Cookie policy

We use cookies to ensure that we give you the best experience on our website. However you can change your cookie settings at any time in your browser settings. Please find our cookie policy here ↗