About 118 results
Open links in new tab
  1. MySQL SUBSTRING_INDEX () Function - W3Schools

    Definition and Usage The SUBSTRING_INDEX () function returns a substring of a string before a specified number of delimiter occurs. Syntax SUBSTRING_INDEX (string, delimiter, number)

  2. SUBSTRING, PATINDEX and CHARINDEX string functions in SQL

    This article will describe SUBSTRING, PATINDEX and CHARINDEX string functions in SQL Queries.

  3. SQL Server equivalent of substring_index function in MySQL

    MySQL SUBSTRING_INDEX () returns the substring from the given string before a specified number of occurrences of a delimiter. SUBSTRING_INDEX (str, delim, count) Output: …

  4. MySQL SUBSTRING_INDEX Function

    In this tutorial, you have learned how to use the MySQL SUBSTRING_INDEX() function to get a substring from a string before a specified number of occurrences of the delimiter.

  5. SUBSTRING_INDEX in SQL: Explained Simply | The Table - Medium

    Jun 23, 2025 · Need to extract part of a string in SQL? SUBSTRING_INDEX is a useful but underused function that returns a portion of a string based on a delimiter and a count. In this …

  6. substring_index function | Databricks on AWS

    Learn the syntax of the substring\_index function of the SQL language in Databricks SQL and Databricks Runtime.

  7. A Complete Guide to SUBSTRING_INDEX in SQL - DbVisualizer

    Jan 16, 2024 · 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 …

  8. Understanding SUBSTRING_INDEX in SQL: Real Use Cases

    Jun 23, 2025 · SQL developers often need to slice up strings—whether to extract domains from emails, parse IPs, or pull parts of URLs. The SUBSTRING_INDEX function makes this easy …

  9. MySQL: SUBSTRING_INDEX Function - TechOnTheNet

    This MySQL tutorial explains how to use the MySQL SUBSTRING_INDEX function with syntax and examples. The MySQL SUBSTRING_INDEX function returns the substring of string …

  10. MySQL Substring And Substring_Index Functions With Examples

    Apr 1, 2025 · Learn about MySQL SUBSTRING and SUBSTRING_INDEX functions and its usage with multiple examples in this tutorial.