我有一个名为RelatedUsers
with 的模型具有三个属性:
firstUserId
secondUserId
relationshipStatus
我来自 MySQL,我会这样做:
mysql_query("SELECT * FROM relatedUsers WHERE (firstUserId='$originatorId'
AND secondUserId='$recipientId') OR (firstUserId='$recipientId'
AND secondUserId='$originatorId')");
我怎样才能用 Google App Engine 做这样的事情?我在网上找不到类似的案例。。