这是我在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
(行)