0
I am using the excerpt below in my code, but when inserting > inside a String, it returns the result as > ;, the same is converting to HTML entity, as I can use '>', without problems?
'"name":"'+RTRIM(CONVERT(VARCHAR(100),CAT.DESCRICAO))+ '>' + CATP.DESCRICAO + '"}',','
Select result:
[{"code":"182574","name":"SMARTPHONE > ; TELEPHONY"}]
Have you tried the U02C3 exhaust sequence?
– Augusto Vasques
Unfortunately it is impossible to reproduce the problem only with the code snippet that you reported. Provide a minimum executable example so we can help you with your question
– Sorack
You can inform your
SELECT
complete?– RXSD
It is worth remembering that the SQL-Server does not allow concatenating values that are not of the same data_type, in case you don’t know, I’d advise taking a look at this contents related.
– RXSD