B
Brian
I have 3 tables defined as
Table_1
-table_1_id
Table_2
-table_2_id
-table_1_id
-table_3_id
Table_3
-table_3_id
-table_3_string
I have a query that has the following result
table_1_id table_3_string
------------------------------------------------
0 "string 1"
0 "string 2"
1 "string 3"
1 "string 4"
1 "string 5"
2
3
4
Basically i would like to make a query that would result
table_1_id table_3_string
------------------------------------------------
0 "string 1","string 2"
1 "string 3","string 4","string 5"
2
3
4
i would like to eliminate the duplicate entries and have all of
the strings stored in the same field... i don't know if this is
even possible to do
Thanks
Brian
Table_1
-table_1_id
Table_2
-table_2_id
-table_1_id
-table_3_id
Table_3
-table_3_id
-table_3_string
I have a query that has the following result
table_1_id table_3_string
------------------------------------------------
0 "string 1"
0 "string 2"
1 "string 3"
1 "string 4"
1 "string 5"
2
3
4
Basically i would like to make a query that would result
table_1_id table_3_string
------------------------------------------------
0 "string 1","string 2"
1 "string 3","string 4","string 5"
2
3
4
i would like to eliminate the duplicate entries and have all of
the strings stored in the same field... i don't know if this is
even possible to do
Thanks
Brian