这是我在 rethinkDB 中的表
[{"username": "row1", "some_key": ["str1", "str2"]}, {"username": "row2", "some_key": ["str3", "blah"]}, {"username": "row3", "some_key": ["blah", "blahblah"]}]
(field
列)name
可以重复。我有一个list
['row1', 'row2']
.
我想运行查询并获取所有documents
(行name
)list
到目前为止,我有这个:
r.db(self.PROJECT_DB).table(self.PROJECT_TABLE_PICWIZ).filter(r.row['username'] == name for name in following).limit(5).run(self.db_connection)
following
是list
这里。
但这会返回所有documents
(行)