除了 Google 提供的 Google App Engine 文档之外,有没有人有任何好的信息,这些文档为具有 MS SQL 背景的人提供了一个很好的概述,以移植他们的知识和有效地使用 Google App Engine Data Store API。
例如,如果您有一个自建的用户表和一个消息表
如果用户和消息之间存在关系(由 UserID 连接),那么这种结构将如何在 Google App Engine 中表示?
SELECT * FROM Users INNER JOIN Message ON Users.ID = Message.UserID