About 409,000 results
Open links in new tab
  1. STRING_SPLIT (Transact-SQL) - SQL Server | Microsoft Learn

    Nov 18, 2025 · STRING_SPLIT is a table-valued function that splits a string into rows of substrings, based on a specified separator character. STRING_SPLIT requires the …

  2. SQL Server STRING_SPLIT Function

    This tutorial shows you how to use the SQL Server STRING_SPLIT () function to split a string into a row of substrings based on a specified separator.

  3. How to Split a Delimited String to Access Individual Items in SQL ...

    Jul 23, 2025 · Splitting delimited strings in SQL is a fundamental task in data manipulation and analysis. Understanding various methods, including built-in functions like STRING_SPLIT and …

  4. The STRING_SPLIT function in SQL Server

    Dec 3, 2018 · This article will cover the STRING_SPLIT function in SQL Server including an overview and detailed usage examples. SQL Server users usually need string parsing and …

  5. Split and Re-Aggregate Delimited Strings in SQL Server

    Aug 25, 2025 · This article walks through how to split delimited strings into rows, process them, and then re-aggregate them back into a single string, all within SQL Server. Since SQL Server …

  6. SQL Server Split String Replacement Code with STRING_SPLIT

    Jun 1, 2020 · The STRING_SPLIT function does not eliminate duplicates, return a data type other than strings, or guarantee that the values will be returned in the same order they appear in the …

  7. Working with SQL Server’s STRING_SPLIT Function

    Aug 12, 2025 · Learn how to work with SQL Server's STRING_SPLIT function efficiently and overcome its limitations. Find solutions for various behavior changes and compatibility level …

  8. SQL Server String Splitting Techniques: Functions and

    Jul 22, 2025 · The core challenge is to transform a single string containing multiple values, separated by a specific character or string, into a table format where each value resides in its …

  9. SQL Techniques To Split A String Into Rows

    4 days ago · Built In Split Functions Vendors that ship a direct split function remove a lot of friction when all you need is a clean row set from a comma separated value. SQL Server has leaned …

  10. How to Split a String in SQL Server - LearnSQL.com

    Learn how to split a string in SQL Server with our step-by-step guide. Master string manipulation in SQL with detailed examples and practical tips.