SELECT [Name3] FROM [DataTable3]
INTERSECT
SELECT [Name4] FROM [DataTable4];
I am trying to intersect these two columns in MS-Acess and it is not working. It keeps giving me this error: SYNTAX ERROR IN FROM CLAUSE.
Could it be that INTERSECT is a command for SQL Server only?
I have even tried this code and it's not working:
SELECT [DataTable3].Name3 FROM [DataTable3]
INTERSECT
SELECT [DataTable4].Name4 FROM [DataTable4];
Help!!!!!!!!! Thanks a lot.
2007-01-23
03:45:48
·
6 answers
·
asked by
JiveSly
4
in
Computers & Internet
➔ Programming & Design
Great Answers!!! Thank you all!!!
2007-01-23
11:45:19 ·
update #1