Using a Query to split 1 record in to 3 records

Newbie Member
18Mar2010,00:23   #1
CaboWaboScott's Avatar
Greetings, I want to split the following record in to 3 records using a query.

CCV DEPOSIT SEQ#1204BS1990 A-0000000802D

End result would be
CCV DEPOSIT
SEQ#1204BS1990
A-0000000802D

I keep getting a syntax error when I try to create the split query. Any thoughts would be most helpful!!

~Scott
Go4Expert Member
21Feb2011,14:00   #2
apr pillai's Avatar
Create a UNION Query with the following sample SQL:

Code:
SELECT Table1.Field1 FROM Table1
UNION Table1.Field2 FROM Table1
UNION Table1.Field3 FROM Table1