JOIN questions

  • Thread starter ksun via AccessMonster.com
  • Start date
K

ksun via AccessMonster.com

Hi,

I have two questions:

1. I'm trying to do a FULL OUTER JOIN in Access, but it deeps on saying
"Syntax error in FROM clause". Here's my code:

SELECT Query2.*, Query4.*
FROM Query2 FULL OUTER JOIN Query4
ON (Query2.VM_VMONTH = Query4.VM_VMONTH)
AND (Query2.GAMMA_QUANT = Query4.Gam_Quant);

2. Is there a way to select out records that do NOT match via INNER JOIN?

Thank you!
Kathy
 
K

ksun via AccessMonster.com

J

John Vinson

OK, thank you. Still, I'm confused why the FULL OUTER JOIN failed.

Because the Microsoft developers of Microsoft Access 1.0 (and all
versions since) chose not to implement that portion of the SQL
standard.

John W. Vinson[MVP]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top