Skip to main content
Question

Fusion tables update records

  • September 2, 2014
  • 3 replies
  • 6 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:

 

 

3 replies

david_r
Celebrity
  • September 3, 2014

Hi David, 

 

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

 

 

Thanks 

 

 


david_r
Celebrity
  • 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

Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings