About 1,450,000 results
Open links in new tab
  1. SQL Server SUBSTRING () Function - W3Schools

    Definition and Usage The SUBSTRING () function extracts some characters from a string. Syntax SUBSTRING (string, start, length)

  2. SUBSTRING (Transact-SQL) - SQL Server | Microsoft Learn

    Nov 18, 2025 · The SUBSTRING function returns a portion of a specified character, binary, text, or image expression.

  3. SUBSTRING, PATINDEX and CHARINDEX string functions in SQL

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

  4. SQL SUBSTRING Function Use and Examples - SQL Server Tips

    Apr 27, 2025 · Learn about the SQL Server SUBSTRING functions and the different ways this could be used.

  5. SQL Server SUBSTRING Function By Practical Examples

    In this tutorial, you will learn how to use the SQL Server SUBSTRING () function to extract a substring from a string.

  6. SQL Server SUBSTRING () Function - GeeksforGeeks

    Jul 15, 2025 · The SUBSTRING () function extracts a substring from a string, starting at a specified position and with an optional length. It can be used with literal strings or columns in a …

  7. SUBSTRING () Function in SQL Server — Syntax and Examples

    Feb 28, 2025 · What is the SQL Server SUBSTRING () function? The SUBSTRING () function in SQL Server is a string-manipulation powerhouse. Whether you’re pulling out specific …

  8. SQL Server: SUBSTRING Function - TechOnTheNet

    This SQL Server tutorial explains how to use the SUBSTRING function in SQL Server (Transact-SQL) with syntax and examples. In SQL Server (Transact-SQL), the SUBSTRING functions …

  9. T-SQL Substring function in SQL Server

    SUBSTRING(input_string, start_position, length) input_string: This is the source string from which you want to extract a substring. start_position: This parameter specifies the position within the …

  10. SQL Server SUBSTRING () Function - TutorialsTeacher.com

    The SUBSTRING () function returns a part of a given string. The given string can be of character, binary, text, or image type.