G
Guest
i must have a union query which includes a memo field, but the union query
cuts it off. what do i do?
cuts it off. what do i do?
YisMan said:thanks douglas and thanks allen
i am using union all:
SELECT [col1],[col2],[col3]
FROM [tableA]
UNION ALL SELECT [col1],[col2],[col3]
FROM [tableB]
but my memo fields get truncated
actually col3 of tableB is the only memo field, its tableA cousin is text
please help
--
Thankfully, YisMan
Allen Browne said:Use:
UNION ALL
instead of:
UNION
By default, a UNION query will deduplicate the records of the various
SELECTs. To do this, Access must compare the memo fields, and this
results
in truncation. UNION ALL does not deduplicate, so Access is free to
return
the whole memo.