RethinkDB:​​匹配字符串列表中的字符串

时间:2016-04-13 21:37:01

标签: python-3.x rethinkdb rethinkdb-python

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

0 个答案:

没有答案