DEV Community

Cover image for MySQL SUBSTRING Function: The Complete Guide
DbVisualizer
DbVisualizer

Posted on • Originally published at dbvis.com

MySQL SUBSTRING Function: The Complete Guide

If you’ve been working with MySQL for a while, you might have heard about the SUBSTRING function. This function can help you extract a part of a string from a specific position. In this article, we'll be discussing everything you need to know about it.


Tools used in this tutorial

DbVisualizer, top rated database management tool and SQL client
The MySQL database version 8 or later


What is the SUBSTRING Function In MySQL?

The SUBSTRING function is used to extract a substring from a given string. It takes three arguments - the original string, the starting position, and the length of the substring. Here's the syntax of the SUBSTRING function in MySQL:

1 SUBSTRING(string, start, length)
Enter fullscreen mode Exit fullscreen mode

How to Use the MySQL SUBSTRING Function
Now that you know what the SUBSTRING function is, let's see how to use it. Here's an example of using the SUBSTRING function to extract a substring from a string:

1 SELECT SUBSTRING('MySQL SUBSTRING Function', 7, 9);

Enter fullscreen mode Exit fullscreen mode

In this example, we're extracting a substring starting from the 7th position and with a length of 9 characters. The output of this query would be "SUBSTRING".

Tips for Using the MySQL SUBSTRING Function

Here are a few tips to keep in mind when using the MySQL SUBSTRING function:

  1. The Starting Position is Zero-Indexed
    The starting position in the SUBSTRING function is zero-indexed. That means the first character of the string is at position 0, the second character is at position 1, and so on.

  2. The Length Argument is Optional
    The length argument in the SUBSTRING function is optional. If you don't provide the length argument, then the function will return the substring starting from the starting position to the end of the string.

  3. The Starting Position and Length Can Be Negative
    The starting position and length arguments in the SUBSTRING function can be negative. If the starting position is negative, then it counts from the end of the string. For example, a starting position of -1 would refer to the last character in the string. If the length argument is negative, then the function will return the substring up to the specified number of characters from the end of the string.

Common Mistakes to Avoid When Using the MySQL SUBSTRING Function

Here are a few common mistakes to avoid when using the MySQL SUBSTRING function:

  1. Providing an Incorrect Starting Position
    If you provide an incorrect starting position, then you'll get an incorrect substring. Make sure to double-check the starting position before using the SUBSTRING function.

  2. Providing an Incorrect Length of the Substring
    If you provide an incorrect length of the substring, then you'll get an incorrect substring. Make sure to double-check the length before using the SUBSTRING function.

  3. Using the Wrong Function
    Make sure that you're using the SUBSTRING function and not a similar function like LEFT or RIGHT. These functions have different syntaxes and functionality.

Conclusion

The SUBSTRING function is a powerful tool that can help you extract substrings from a given string. By following the tips and avoiding common mistakes, you can use this function to its full potential. We hope this guide was helpful in understanding the SUBSTRING function in MySQL. Happy coding!

Top comments (0)