About 178,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 …

  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 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.

  4. Using REPLACE Function in SQL - GeeksforGeeks

    Jul 23, 2025 · In this article, we are going to discuss some applications of REPLACE function. We will also discuss some examples related to REPLACE functions with their respective …

  5. 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, …

  6. SQL REPLACE Function - Tutorial Gateway

    Generally, the REPLACE function can be used in the SELECT statement or UPDATE statement to perform text replacement or manipulation.

  7. SQL Server REPLACE () Function: Replace String

    The REPLACE () function replaces all occurrences of the given string with the specified substring.

  8. REPLACESQL Tutorial

    The syntax for the REPLACE function in SQL is as follows: where string is the original string, old_substring is the substring to be replaced, and new_substring is the replacement substring. …

  9. SQL Server: REPLACE Function - TechOnTheNet

    SQL Server: REPLACE Function This SQL Server tutorial explains how to use the REPLACE function in SQL Server (Transact-SQL) with syntax and examples.

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

    Jul 8, 2024 · In most cases, the SQL REPLACE() function is used to modify all the substring occurrences within a string in a given dataset. Text manipulation is important in SQL as it …