C
Cheryl L.
I have a very simple Union query that does not use DISTINCT or GROUP BY. It
does use ORDER BY but the fields in that statement are not memo fields. My
memo field is truncated. The query is shown below. Any help would be
appreciated.
SELECT [DateOfMinutes], [TypeOfAction1] AS [TypeOfAction], [Action],
[Superseded?],[DateSuperseded]
FROM [Historical Actions]
WHERE [DateOfMinutes] Is Not Null
UNION SELECT [DateOfMinutes], [TypeOfAction2] AS [TypeOfAction],
[Action],[Superseded?],[DateSuperseded]
FROM [Historical Actions]
WHERE [DateOfMinutes] Is Not Null and [TypeOfAction2] Is Not Null
ORDER BY [TypeOfAction], [DateOfMinutes];
does use ORDER BY but the fields in that statement are not memo fields. My
memo field is truncated. The query is shown below. Any help would be
appreciated.
SELECT [DateOfMinutes], [TypeOfAction1] AS [TypeOfAction], [Action],
[Superseded?],[DateSuperseded]
FROM [Historical Actions]
WHERE [DateOfMinutes] Is Not Null
UNION SELECT [DateOfMinutes], [TypeOfAction2] AS [TypeOfAction],
[Action],[Superseded?],[DateSuperseded]
FROM [Historical Actions]
WHERE [DateOfMinutes] Is Not Null and [TypeOfAction2] Is Not Null
ORDER BY [TypeOfAction], [DateOfMinutes];