About 213,000 results
Open links in new tab
  1. MySQL SUBSTR () Function - W3Schools

    Extract a substring from a string (start at position 5, extract 3 characters): The SUBSTR () function extracts a substring from a string (starting at any position). Note: The position of the first …

  2. MySQL: SUBSTR Function - TechOnTheNet

    This MySQL tutorial explains how to use the MySQL SUBSTR function with syntax and examples. The MySQL SUBSTR function allows you to extract a substring from a string.

  3. How to Use Substr in SQL? - AEANET

    Oct 2, 2025 · Mastering the SUBSTR function is essential for effective data manipulation in SQL. By understanding its syntax, benefits, and potential pitfalls, you can leverage this powerful tool …

  4. MySQL SUBSTRING () Function: Usage & Examples - DataCamp

    Learn how to use the MySQL `SUBSTRING ()` function to extract specific parts of strings with examples, syntax, and best practices for efficient data manipulation.

  5. MySQL SUBSTR () function - w3resource

    Jul 19, 2023 · MySQL SUBSTR () returns the specified number of characters from a particular position of a given string.

  6. 14.8 String Functions and Operators - MySQL

    Returns the position of the first occurrence of substring substr in string str. This is the same as the two-argument form of LOCATE(), except that the order of the arguments is reversed.

  7. Mastering the SUBSTRING Function in SQL: A Comprehensive …

    In this blog, we’ll explore what SUBSTRING is, how it works, when to use it, and how it compares to related functions like LEFT and RIGHT. With detailed examples and clear explanations, …

  8. MySQL SUBSTR () Function - Online Tutorials Library

    The MySQL SUBSTR () function is used to extract a substring from a given string. It takes three arguments: the original string, the position at which to start extraction, and the length of the …

  9. MySQL SUBSTR () Function

    The MySQL SUBSTR () function returns a substring of a specified string starting starting at a specified position.

  10. MySQL SUBSTRING () and SUBSTR () Functions - MySQLCode

    Dec 30, 2020 · Both functions do the same thing but have different names. SUBSTRING() and SUBSTR() are used to extract a substring from a given string from a given position. You may …