I have this code:
SELECT CAST(Numero as varchar(255)) + ';' as Result FROM Acao
This code returns this:
I want to return a single line like this: "52;56;57;59", because I want to put this in a formula of a computed column. How do I do this using SQL?