I'm creating a website based on the JSP language but I do not know how to return a query that I performed on MSSQL Server , it looks like this:
DECLARE @Nomes VARCHAR(8000)
SELECT @Nomes = COALESCE(@Nomes + ', ', '') + nome
FROM usuarios
W...
asked by
08.03.2017 / 14:48