Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我为特定查询存储了 Datastore Viewer URL,例如:
SELECT * FROM User WHERE __key__ = key('User',9999)
现在,在更新的控制台界面中,它不起作用。语法有变化吗?
看来 key() 函数已更改。它通过删除单引号对我有用,即:
SELECT * FROM User WHERE __key__ = key(User,9999)