Over 10 years we helping companies reach their financial and branding goals. Onum is a values-driven SEO agency dedicated.

CONTACTS
SQL Server

SQL Server STUFF() Function: How to Use and What it Does

Introduction to the STUFF() Function

The STUFF() function is a powerful string manipulation function in SQL Server that allows you to replace a portion of a string with another string. It is commonly used to insert or delete characters within a string at a specified position. The STUFF() function is particularly useful when you need to modify data in a column or concatenate multiple strings together.

Syntax of the STUFF() Function

The syntax of the STUFF() function is as follows:

«`sql
STUFF (character_expression, start, length, replacement_expression)
«`

Let’s break down the syntax:

– `character_expression`: This is the string that you want to modify. It can be a column name, a variable, or a string literal.
– `start`: This is the starting position within the `character_expression` where you want to replace or delete characters. The position is 1-based, meaning the first character is at position 1.
– `length`: This is the number of characters that you want to replace or delete starting from the `start` position.
– `replacement_expression`: This is the string that you want to insert at the `start` position. It can be a column name, a variable, or a string literal.

Explanation of Parameters

Let’s take a closer look at each parameter of the STUFF() function:

– `character_expression`: This parameter is required and represents the string that you want to modify. It can be a column name, a variable, or a string literal. The length of the `character_expression` must be greater than or equal to the sum of the `start` position and the `length` parameter.
– `start`: This parameter is required and represents the starting position within the `character_expression` where you want to replace or delete characters. The position is 1-based, meaning the first character is at position 1. If the `start` position is greater than the length of the `character_expression`, the STUFF() function will return NULL.
– `length`: This parameter is required and represents the number of characters that you want to replace or delete starting from the `start` position. If the `length` parameter is negative or zero, the STUFF() function will return NULL.
– `replacement_expression`: This parameter is optional and represents the string that you want to insert at the `start` position. If the `replacement_expression` is NULL, the STUFF() function will delete the characters specified by the `length` parameter.

Recomendado:  View in SQL Server: Cómo ver una tabla en SQL Server

Examples of Using the STUFF() Function

Now, let’s see some examples of how to use the STUFF() function in SQL Server.

Example 1: Replace characters in a string

Suppose we have a table called `Employees` with a column called `FullName` that stores the full names of employees. We want to replace the last name of each employee with a different last name.

«`sql
SELECT STUFF(FullName, CHARINDEX(‘ ‘, FullName), LEN(FullName), ‘Doe’) AS NewFullName
FROM Employees
«`

In this example, the STUFF() function is used to replace the last name of each employee with the string ‘Doe’. The CHARINDEX() function is used to find the position of the space character in the `FullName` column, which represents the end of the first name. The LEN() function is used to calculate the length of the `FullName` column. The result is a new column called `NewFullName` that contains the modified full names.

Example 2: Insert characters into a string

Suppose we have a table called `Products` with a column called `ProductName` that stores the names of products. We want to insert the string ‘ – New’ at the end of each product name.

«`sql
SELECT STUFF(ProductName, LEN(ProductName) + 1, 0, ‘ – New’) AS NewProductName
FROM Products
«`

In this example, the STUFF() function is used to insert the string ‘ – New’ at the end of each product name. The LEN() function is used to calculate the length of the `ProductName` column. The result is a new column called `NewProductName` that contains the modified product names.

Example 3: Delete characters from a string

Suppose we have a table called `Customers` with a column called `EmailAddress` that stores the email addresses of customers. We want to delete the domain name from each email address.

Recomendado:  SQL Server ROLLUP: Qué es y cómo utilizar este operador en SQL Server

«`sql
SELECT STUFF(EmailAddress, CHARINDEX(‘@’, EmailAddress), LEN(EmailAddress), ») AS NewEmailAddress
FROM Customers
«`

In this example, the STUFF() function is used to delete the domain name from each email address. The CHARINDEX() function is used to find the position of the ‘@’ character in the `EmailAddress` column, which represents the start of the domain name. The LEN() function is used to calculate the length of the `EmailAddress` column. The result is a new column called `NewEmailAddress` that contains the modified email addresses.

Conclusion

The STUFF() function is a powerful string manipulation function in SQL Server that allows you to replace a portion of a string with another string. It is commonly used to insert or delete characters within a string at a specified position. The STUFF() function can be a valuable tool in your SQL Server toolbox when you need to modify data in a column or concatenate multiple strings together.

Autor

osceda@hotmail.com

Deja un comentario

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *