Forum Replies Created

Viewing 2 posts - 1 through 3 (of 3 total)

  • RE: For T-SQL Guru

    Sorry, should be a trick that build a string of one column from all record, like this:

    declare @s-2 varchar(4000)

    select @s-2 = 'start from here:'

    select @s-2 = @s-2 + <some_col_name> from...

  • RE: For T-SQL Guru

    Sorry, should be a trick that build a string of one column from all record, like this:

    declare @s-2 varchar(4000)

    select @s-2 = 'start from here:'

    select @s-2 = @s-2 + <some_col_name> from...

Viewing 2 posts - 1 through 3 (of 3 total)