ms access 2007 - not able to update/modify columns in query -


before have question "query getting related image" , got helpful answer http://answers.microsoft.com/en-us/office/forum/office_2007-access/query-for-getting-related-image/ec5b7e35-1dda-4faf-89d9-ac7255697f4c

the sql query is:

select table1.docno, table1.title, table1.progress, table2.icon table1, table2 iif([progress]>=0.5,1,2)=[id]) 

alternatively, use

 select table1.docno, table1.title, table1.progress, table2.icon table1 inner join table2 on iif(table1.progress>=0.5,1,2)=table2.id 

now update or modify result data returned query, example have added [isselect] field (yes/no) in underlying table (table1) , put in returned query, need times update [isselect] field , not allow me update fields.

please how can have query returns below question , can update data when returns.


Comments

Popular posts from this blog

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

html - How to style widget with post count different than without post count -

url rewriting - How to redirect a http POST with urlrewritefilter -