2
I have a text Edit PRODUCT that comes like this: 'STICKER 478', with apostrophes. How do I make it come out like this: STICKER 478 on sql server? I’ve tried that and it doesn’t work:
DECLARE @ProdutoNome VARCHAR(30);
SET @ProdutoNome = REPLACE(''ADESIVO 478'', '''', '')
PRINT @ProdutoNome
Is Mysql or SQL Server?
– Sorack
I am using sql server
– Felipe Michael da Fonseca