A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Running & Setting Up Queries
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

"update ta set ta.ra=1 from tablename ta" how can pass in Access



 
 
Thread Tools Display Modes
  #1  
Old November 1st, 2007, 02:51 PM posted to microsoft.public.access.queries
lll-j
external usenet poster
 
Posts: 1
Default "update ta set ta.ra=1 from tablename ta" how can pass in Access

is it can be pass in the Access?
how to change?
thanks!



update ta
set col = t.col
from ta,(select id,max(col) col from tb
group by id) t
where ta.id = t.id
  #2  
Old November 1st, 2007, 03:38 PM posted to microsoft.public.access.queries
Michel Walsh
external usenet poster
 
Posts: 2,404
Default "update ta set ta.ra=1 from tablename ta" how can pass in Access

UPDATE ta SET col = DMAX("col" , "tb", "id=" & id )


or (untested)



UPDATE ta INNER JOIN tb ON ta.id=tb.id
SET ta.col = tb.col
WHERE tb.col = ( SELECT MAX(col) FROM tb AS c WHERE c.id = ta.id )



A Jet query implying an aggregate (elsewhere than in a sub-query in the
WHERE clause) is NOT updateable.


Vanderghast, Access MVP



"lll-j" wrote in message
...
is it can be pass in the Access?
how to change?
thanks!



update ta
set col = t.col
from ta,(select id,max(col) col from tb
group by id) t
where ta.id = t.id



 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 12:23 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.