Hi,
I have 3 tables:
T_Template containing a list of templates
T_Field containing a list of fields
T_Template_Fields containing a list of many field IDs against the Template ID
If I try this:
I get 5 rows returned containing 5 Field IDs.
The output that I'm after is just one row containing a comma separated string of these 5 Field IDs, can anyone help me?
BDC.
I have 3 tables:
T_Template containing a list of templates
T_Field containing a list of fields
T_Template_Fields containing a list of many field IDs against the Template ID
If I try this:
Code:
select FieldID from T_Template_Fields where templateid = 1
The output that I'm after is just one row containing a comma separated string of these 5 Field IDs, can anyone help me?
BDC.