Skip to main content
Question

Fusion tables update records

  • September 2, 2014
  • 3 replies
  • 9 views

Hi 

 

 

I have a fusion table that i need to update base on a certain criteria. Does someone have any suggestions on how to do it. 

 

 

UPDATE Seminar

 

SET YearOS = 2013

 

where seminar ='CollectingData';

 

 

Base on Google documentaion 

 

 

UPDATE <table_id>

 

SET <column_name> = <value> {, <column_name> = <value> }*

 

WHERE ROWID = <row_id>

 

 

To update values in one or more columns of an existing row in a table, use the following syntax in an HTTP POST request:

 

 

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

3 replies

david_r
Celebrity
  • 8394 replies
  • September 3, 2014

  • Author
  • 3 replies
  • September 4, 2014

Hi David, 

 

I created this model base on yoru suggestion.  I can not update the field.  Any sugestions. ?

 

 

Thanks 

 

 


david_r
Celebrity
  • 8394 replies
  • September 5, 2014
Hi,

 

 

what does the FME log say? Does it show any errors or warnings?

 

 

Also, I see that you're using mixed case field and/or table names. I recommend you quote them to prevent the SQL parser from assuming all lower or upper case (depending on backend):

 

 

UPDATE "Seminar"

 

SET "YearOS" = 2013

 

where "Seminar" ='CollectingData';

 

 

Remember: double quotes for field and table names, single quotes for string values.

 

 

David