I am trying to do a simple find and replace query using MSSQL, however the query runs without removing the character.Keep in mine I want a query without having to list the unique data in each row.
Number
''12454545''
''12454''
''1895622''
''9846252''
Number
12454545
12454
1895622
9846252
Therefore I only need to remove the ('') from the value in each row. The find and replace function in Excel is exactly the principle required here.
Here are two of the queries I have tried that runs successfully, however it does not remove the ('') .
UPDATE [Table]
SET [Number] = REPLACE([Number], '''', '')
SELECT REPLACE([Number], '''', '') FROM [Table]
Any suggestions?
Okay, I think you can use SET QUOTED_IDENTIFIER OFF before your query something like this -
SET QUOTED_IDENTIFIER OFF;
UPDATE [Table]
SET [Number] = REPLACE([Number], "'", "")
SET QUOTED_IDENTIFIER ON;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With