About 236,000 results
Open links in new tab
  1. 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 …

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

  3. How to replace a character from a String in SQL?

    I want to write an SQL statement which finds all the cells that contain ? (may be more than one per cell) and replace them with '. I am sure that all ? have to be replaced without exception. I …

  4. Replace character in string column in SQL query - Stack Overflow

    Feb 22, 2023 · 0 I am trying to return every column from an SQL table and replace any '/' in a certain string column with '_' in the query itself as follows:

  5. How do I search for a ', ' and replace with ', '<CR><LF> in SQL …

    May 12, 2015 · 3 In SQL Server Management Studio (SSMS), use the find/replace box with the "Use Regular Expressions" box selected and replace , (comma character) with ,\r\n (comma …

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

  7. sql - MySQL - Replace Character in Columns - Stack Overflow

    Feb 11, 2015 · SQL = SELECT REPLACE(myColumn, '""', '\'') FROM myTable I used singlequotes because that's the one that registers string expressions in MySQL, or so I believe.

  8. How to replace a particular character at a particular position in sql ...

    Oct 20, 2016 · How to replace a particular character at a particular position in sql Asked 9 years, 1 month ago Modified 9 years, 1 month ago Viewed 5k times

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

  10. SQL Server replace, remove all after certain character

    Nov 3, 2009 · SQL Server replace, remove all after certain character Asked 16 years, 1 month ago Modified 2 years, 8 months ago Viewed 337k times