weronpc
05-04-2005, 09:31 PM
I have 2 tables with the following schematic:
TABLE 1
ID Name Description
==============================
1 John Tall
2 Mike Small
TABLE 2
ID Element
==================
1 Red
1 Green
1 Yellow
1 Blue
2 Red
2 Green
2 Yellow
2 Pink
I want to create a view / or output that concatenates _all_ the elements from Table 2 into one single field that can be placed on the end of the Table 1 (regardless of how many elements).
Like the following:
OUTPUT / VIEW
ID Name Description Element
=================================================
1 John Tall Red Green Yellow Blue
2 Mike Small Red Green Yellow Pink
Your help would be appreciated,
Mike
TABLE 1
ID Name Description
==============================
1 John Tall
2 Mike Small
TABLE 2
ID Element
==================
1 Red
1 Green
1 Yellow
1 Blue
2 Red
2 Green
2 Yellow
2 Pink
I want to create a view / or output that concatenates _all_ the elements from Table 2 into one single field that can be placed on the end of the Table 1 (regardless of how many elements).
Like the following:
OUTPUT / VIEW
ID Name Description Element
=================================================
1 John Tall Red Green Yellow Blue
2 Mike Small Red Green Yellow Pink
Your help would be appreciated,
Mike