update statment

N

Nicky

Is there a way to do that with inner join??
-----Original Message-----
your syntax for update query is wrong. you cant use from
in update query.

the syntax is: update <table name> set <field name>=
<value> where <condetion>

you can use a select statement as a subquery in the where
part. ensure you use proper braces if you do that.

your query should look some what like that.

Update table1
Set field= (select table2.field
From table1 Inner join table2 on ....
inner join table3 on....

also try using query wizard if you find creating update
query tedious.
.
 

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