I have attempted to create a union query for a very simple join of one date attribute and one text attribute into one column and I am getting the same error as Thom was previously.
My query is the following:
SELECT Appointments.EndTime FROM MEC_APPOINTMENTS AS Appointments
UNION
SELECT Appointments.Description FROM MEC_APPOINTMENTS AS Appointments
I created a simple query and then checked the SQL Form and the exact translation was:
SELECT Appointments.EndTime FROM MEC_APPOINTMENTS AS Appointment
I'm sure that I am missing something simple so any help would be appreciated.
Thanks