Viewing 4 posts - 1 through 4 (of 4 total)
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...
October 16, 2009 at 3:30 pm
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...
October 16, 2009 at 3:05 pm
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...
October 16, 2009 at 1:05 pm
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...
October 16, 2009 at 8:59 am
Viewing 4 posts - 1 through 4 (of 4 total)