joining fields

Phil_L

Registered User.
Local time
Today, 15:37
Joined
Nov 14, 2003
Messages
22
is there a way to join 2 fields?

for example

Field 1
a
b
c

Field 2

d
e
f

Joined field

a
b
c
d
e
f

cheers

Phil
 
You ask how to join two fields but that's not what your example shows. Your example seems to concatenate two lists. You would use a union query to concatenate two queries or tables into a single recordset.

Select fld1, fld2, fld3 From tblA
Union Select fld1, fld2, fld3 From tblB;
 

Users who are viewing this thread

Back
Top Bottom