0

我正在使用 PyPika 构建 SQL 查询。我想根据外部方(account_list)的输入动态添加“OR”子句。我没有看到任何有关如何执行此操作或是否可能的文档。

例子:

from pypika import Query, Table, Field, CustomFunction, Order, Criterion

account_list = [ '23456', '49375', '03948' ]


Query.from_(my_table).select(my_table.product_code, account, ) \
                .where( ( my_table.product_code.like('product_1%') | \
                 my_table.product_code.like('product_2%') ) )  \
                .where( Criterion.any([my_table.account == '23456', \
                 my_table.account == '49375', my_table.account == '03948']) )

无论列表中有多少,是否可以从 account_list 填充标准值?

非常感谢您提前。

4

1 回答 1

1

您可以简单地在列表中预先建立标准,然后将其传递给Criterion.any.

account_list = [ '23456', '49375', '03948' ]
account_criterions = [my_table.account == account for account in account_list] 

query = (
    Query.from_(my_table)
    .select(my_table.product_code, account)
    .where(my_table.product_code.like('product_1%') | my_table.product_code.like('product_2%'))
    .where(Criterion.any(account_criterions))
)
于 2020-10-14T16:56:11.500 回答