Export query results to flat file

J

JC

I'm looking for a simple solution to export query results
of two colums, 4 records to a comma delimeted flat file
showing 8 lines.
 
M

Michel Walsh

Hi,


Make a UNION query, export it.

SELECT f1 FROM myTable
UNION ALL
SELECT f2 FROM myTable


from myTable a table (query) with two columns, f1 and f2


Hoping it may help,
Vanderghast, Access MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top