0

我正在尝试在特定条件下更新记录。

alasql("UPDATE MyDatabase.FooTBL SET Column2 = 1 Where Column1 = 'foo'")

它在控制台上引发错误

未捕获的类型错误:无法读取未定义的属性“表”(…)

谁能建议我将如何更新记录的解决方案。

4

1 回答 1

1

MyAtlas不存在 - 请使用:

alasql('CREATE TABLE IF NOT EXISTS City (city string, population number)'); 
> 1

alasql("INSERT INTO City Values ('Vienna',894456122)");
> 1

alasql("UPDATE City SET city = 'ISLO' Where population = 894456122")
> 1

alasql('select * from City')
> [{"city":"ISLO","population":894456122}]
于 2016-10-20T08:55:39.707 回答