About 907,000 results
Open links in new tab
  1. sql - UPDATE and REPLACE part of a string - Stack Overflow

    Jun 28, 2013 · I've got a table with two columns, ID and Value. I want to change a part of some strings in the second column. Example of Table: ID Value ...

  2. sql - SELECT with a Replace () - Stack Overflow

    Oct 20, 2016 · Either just remove the spaces or add a persisted computed column, Then you can just select from that column and not have to add all the space removing overhead every time you run …

  3. sql - using if statement how to replace values - Stack Overflow

    Apr 13, 2013 · using if statement how to replace values Asked 12 years, 8 months ago Modified 10 years, 6 months ago Viewed 34k times

  4. How to replace a string in a SQL Server Table Column

    May 2, 2009 · 414 I have a table (SQL Sever) which references paths (UNC or otherwise), but now the path is going to change. In the path column, I have many records and I need to change just a portion …

  5. Replace single quotes in SQL Server - Stack Overflow

    However, ordinarily you'd replace ' with '' and this will make SQL Server happy when querying the database. The trick with any of the built-in SQL functions (like replace) is that they too require you to …

  6. sql - How do I do a simple 'Find and Replace" in MsSQL? - Stack …

    Sep 12, 2008 · Question is pretty self explanitory. I want to do a simple find and replace, like you would in a text editor on the data in a column of my database (which is MsSQL on MS Windows server 2003)

  7. sql - replace multiple values at the same time - in order to convert a ...

    Apr 22, 2014 · I am trying to convert a varchar field to a number, however, there is a set of common characters inside that field that need to be removed in order for me to successfully convert it to …

  8. sql server - Replace function in SQL - Stack Overflow

    4 I have a sample text that contains '-' or ' '. So I want a sql replace statement that replaces both '-' and ' ' with ''. My query is:

  9. SQL Replace multiple different characters in string

    Aug 30, 2016 · 4 Hope this might helps to anyone If you want to replace multiple words or characters from a string with a blank string (i.e. wanted to remove characters), use regexp_replace() instead of …

  10. replace NULL with Blank value or Zero in sql server

    May 3, 2017 · 3 Different ways to replace NULL in sql server Replacing NULL value using: 1. ISNULL () function 2. COALESCE () function 3. CASE Statement