如何使用 App Inventor 和 FusionTables 进行更新 sql,其中将现有值加 1
How to make an update sql in which add 1 to value existing, using App Inventor with FusionTables
我在 FusionTables 中有以下 table 与我在 App Inventor 中的应用程序相关联:
每当有人写下其中一位参与者的 姓名 并从应用程序发送时,我都需要在我的数据库中添加 1 票。
一切正常,但我无法使总和发生。
我的错误代码是:
UPDATE my_table SET Vote= Vote + 1 WHERE RowID = 'tomar GlobalRowID'
您无法使用 Fusion Tables 在更新中进行数学计算 SQL。您必须获取该行,进行数学运算,然后将其更新回来。有关详细信息,请参阅 the documentation。
我在 FusionTables 中有以下 table 与我在 App Inventor 中的应用程序相关联:
每当有人写下其中一位参与者的 姓名 并从应用程序发送时,我都需要在我的数据库中添加 1 票。
一切正常,但我无法使总和发生。 我的错误代码是:
UPDATE my_table SET Vote= Vote + 1 WHERE RowID = 'tomar GlobalRowID'
您无法使用 Fusion Tables 在更新中进行数学计算 SQL。您必须获取该行,进行数学运算,然后将其更新回来。有关详细信息,请参阅 the documentation。