Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: TSQL returning only one row

    I fixed the issue by below query

    DECLARE @MyVar nvarchar(max);

    SELECT @MyVar = COALESCE(@MyVar + CHAR(13),'') + NAMEEMPL from SAMINC.dbo.ARSAP INNER JOIN dbo.Users ON NAMEEMPL = User_FirstName + ' ' + User_LastName...

Viewing post 1 (of 1 total)