
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.
SQL Server SUBSTRING () Function - W3Schools
Definition and Usage The SUBSTRING () function extracts some characters from a string. Syntax SUBSTRING (string, start, length)
SUBSTRING, PATINDEX and CHARINDEX string functions in SQL …
This article will describe SUBSTRING, PATINDEX and CHARINDEX string functions in SQL Queries.
SQL SUBSTRING Code Examples and Usage - SQL Server Tips
May 10, 2023 · Learn different ways to use the SQL SUBSTRING function along with several different code examples of how this can be used.
SQL SUBSTRING Function
This tutorial shows you how to use the SQL SUBSTRING function to extract a substring from a string stored in the database.
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 table.
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.
Extract String after a character or before character in SQL Server
Jun 19, 2025 · In SQL Server, we have functions like SubString, CharIndex etc using which we can extract string or substring before or after character in SQL Server, so in this article, I have mentioned …
The SQL Substring Function in 5 Examples - LearnSQL.com
Mar 22, 2022 · One of the common text functions the course covers is SUBSTRING(). In this article, we have five real-life business examples that cover the main uses of this function.
SUBSTRING () Function in SQL Server — Syntax and Examples
Feb 28, 2025 · Understand how to use the SQL Server SUBSTRING function for extracting text. Includes examples with tables, dynamic extractions and tips.