I am trying to produce a report based on 3 queries and combined into one Union query for the report but my text cuts off at 255 after I add the second query.
Here is the SQL statement - any ideas?
SELECT comment1, sortmemo, selection, QNAME,Emplid,GROUP
FROM [qryBest-COMMENTS]
UNION ALL SELECT comment1, sortmemo, selection, QNAME,Emplid,Group
FROM [qrySECONDBEST-comments]
UNION ALL SELECT comment1, sortmemo, selection, QNAME,Emplid,Group
FROM [qryLEASTcomments];
Here is the SQL statement - any ideas?
SELECT comment1, sortmemo, selection, QNAME,Emplid,GROUP
FROM [qryBest-COMMENTS]
UNION ALL SELECT comment1, sortmemo, selection, QNAME,Emplid,Group
FROM [qrySECONDBEST-comments]
UNION ALL SELECT comment1, sortmemo, selection, QNAME,Emplid,Group
FROM [qryLEASTcomments];