About 244,000 results
Open links in new tab
  1. SQL Server REPLACE () Function - W3Schools.com

    Definition and Usage The REPLACE () function replaces all occurrences of a substring within a string, with a new substring. Note: The search is case-insensitive. Tip: Also look at the STUFF () function. …

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

    Nov 18, 2025 · Transact-SQL reference for the REPLACE function, which replaces all occurrences of a specified string value with another string value.

  3. SQL REPLACE Function

    This tutorial shows you how to use the SQL REPLACE function to replace all occurrences of a substring with a new one.

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

    Apr 24, 2025 · Learn about the SQL Server REPLACE function along with several different examples of how this function can be used.

  5. How to UPDATE and REPLACE Part of a String in SQL Server

    Jul 23, 2025 · Updating and replacing substrings in SQL Server involves the use of the UPDATE statement and the REPLACE function, respectively. These tools offer precise control over …

  6. How to Use the SQL REPLACE() Function - DataCamp

    Jul 8, 2024 · Learn the application of the SQL REPLACE () function in text manipulation. Understand the use of the REPLACE () function in data cleaning and database management.

  7. SQL REPLACE Function: Quick Guide with Real Examples

    Jul 10, 2025 · SQL’s REPLACE() function lets you update one string with another directly within your query. Whether it’s correcting typos, rebranding statuses, or rolling over a year reference, REPLACE …

  8. Understanding the SQL REPLACE Function in Microsoft SQL Server

    Dec 4, 2025 · Learn how to use the SQL REPLACE function in Microsoft SQL Server for string manipulation. Replace all occurrences of a specified string value with another string value. Examples …

  9. REPLACESQL Tutorial

    The REPLACE function is often used in SQL queries to clean up data by replacing certain characters or substrings with others. It can also be used to modify text values in tables by updating them with the …

  10. Mastering the REPLACE Function in SQL: A Comprehensive Guide

    In this blog, we’ll dive into what REPLACE is, how it works, when to use it, and how it compares to related functions like TRANSLATE or REGEXP_REPLACE. With detailed examples and clear …