Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)

  • RE: Concatenating Rows

    I understand in this discussion as you mentioned, "entity" = "column", but I think the more logical term is "attribute", not "entity" (as mainly used to refer to table in...

  • RE: Concatenating Rows

    Well, this is my first time here and I thought I was just trying to comment on one particular piece of code I happened to see in front of me...

  • RE: Concatenating Rows

    1) What I meant was no particular view. This post was to reply back to a comment saying this method works only on one entity. I assumed the entity here...

  • RE: Concatenating Rows

    This method:

    DECLARE @var varchar(8000)

    SET @var = ''

    SELECT @var = @var + FieldName + '/'

    FROM Table

    SELECT @Var

    works fine for even multiple entities, just create a view first. I've been using this...

Viewing 4 posts - 1 through 4 (of 4 total)