Posts by Guilherme Monteiro China • 11 points
2 posts
-
1
votes3
answers590
viewsA: How to remove apostrophes from a variable
DECLARE @ProdutoNome VARCHAR(30); SET @ProdutoNome = '''ADESIVO 478''' select @ProdutoNome = replace(@ProdutoNome,'''','') PRINT @ProdutoNome
-
0
votes1
answer53
viewsQ: Error using Angular Delete method
I have an application in Angular4 + Spring boot with the following error when I try to execute the method delete Cross-Origin Request Blocked The same rule of origin prevents me from reading the…