Syntax error in script porting SQL2K to Access

S

Sydney Lotterby

(Wrongly posted to the SQL NG - sorry) (SQL2K, Access 2003)

I'm getting an error: "Syntax error (missing operator) in query expression
'xr.ours ..."

Here is the script that works fine in SQL2K

update fx
set fx.ours = xr.ours
from tcaFix_IT fx
inner join tcaXref_IT xr on fx.courts = xr.courts

Any ideas?

Is it related to Alias restrictions in Access?
What other SQL operations doesn't access support?
Is there an equivalent of ISNULL() in access?

tia
 
S

spencer4

Slightly different syntax in Access SQL

update tcaFix_IT fx inner join tcaXref_IT xr
 
S

Sydney Lotterby

Thanks

Do you know of a comprehensive guide detailing the syntax etc differences
between the two?

Is there an equivalent of ISNULL() in access?
 
D

Douglas J. Steele

Sorry: I don't have a reference for a guide to the differences, but the
equivalent of IsNull() is Nz()
 

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