Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Concatenating Rows

    Good Article but concatenating rows can be achieved with the help of following as well

    DECLARE @FRUITS TABLE

    (ID INT,

    NAME VARCHAR(50)

    )

    INSERT INTO @FRUITS VALUES(101, 'BANANA')

    INSERT INTO @FRUITS VALUES(102, 'ORANGE')

    SELECT...

Viewing post 1 (of 1 total)