V
Vi
Hi all,
I'm doing a union join on 2 select queries - but everytime I click on it, it
gives me the "Microsoft Access has encountered a problem and needs to
close...". I have successfully done other union joins in the same database
with no problems.
Can someone help me?
I am using the same datatype (text), below is the simple code:
SELECT
[T1].[NUMBER] as [NUMBER],
[T1].[FIRSTNAME] as [FIRSTNAME],
[T1].[LASTNAME] as [LASTNAME]
FROM [T1]
UNION SELECT
[T2].[NUMBER] as [NUMBER],
[T2].[FIRSTNAME] as [FIRSTNAME],
[T2].[LASTNAME] as [LASTNAME]
FROM [T2];
Thank you
V
I'm doing a union join on 2 select queries - but everytime I click on it, it
gives me the "Microsoft Access has encountered a problem and needs to
close...". I have successfully done other union joins in the same database
with no problems.
Can someone help me?
I am using the same datatype (text), below is the simple code:
SELECT
[T1].[NUMBER] as [NUMBER],
[T1].[FIRSTNAME] as [FIRSTNAME],
[T1].[LASTNAME] as [LASTNAME]
FROM [T1]
UNION SELECT
[T2].[NUMBER] as [NUMBER],
[T2].[FIRSTNAME] as [FIRSTNAME],
[T2].[LASTNAME] as [LASTNAME]
FROM [T2];
Thank you
V