Concatentating a COLUMN

cawillwe

Registered User.
Local time
Today, 01:26
Joined
May 8, 2001
Messages
12
I have records that have children in another table and I would like to be able to concatenate the string in one field in a query:

Table A:
tblA_ID
FieldA1
FieldA2

Table B:
tblB_ID
tblA_ID
FieldB1

Now say I have in Table A:
tblA_ID FieldA1 FieldA2
1 abcd efgh

and in Table B:
tblB_ID tblA_ID FieldB1
1 1 ghghghg
2 1 popopop

and in a query or form or whatever I want to show:
tblA_ID FieldA1 FieldA2 FieldB1*
1 abcd efgh ghghghg,popopop

Any ideas?
 

Users who are viewing this thread

Back
Top Bottom