gpt4 book ai didi

python-2.7 - python peewee - 如何使用不同的

转载 作者:行者123 更新时间:2023-12-04 02:02:22 26 4
gpt4 key购买 nike

我正在尝试使此代码与 peewee 一起使用:

distinct_list = QSales.select(QSales.account, QSales.tax_code).distinct().where(QSales.trans_num == 3717)
print distinct_list

但打印命令结果是:
<class '__main__.QSales'> SELECT DISTINCT t1.`Account`, t1.`Tax_Code` FROM `q_sales` AS t1 WHERE (t1.`Trans_#` = %s) [3717]

在 MySQL 编辑器中运行上述 select 语句(将打印结果复制到编辑器)返回正确的结果。

我也试过:
distinct_list = QSales.select(fn.Distinct(QSales.account, QSales.tax_code)).where(QSales.trans_num == 3717)

但得到了相同的结果

我究竟做错了什么?

谢谢你。

最佳答案

睡了过去,我意识到该代码应该如下所示:

distinct_list = QSales.select(QSales.account, QSales.tax_code).distinct().where(QSales.trans_num == 3717)
for item in distinct_list:
print item.account
print item.tax_code

现在已经关闭了。谢谢你。

关于python-2.7 - python peewee - 如何使用不同的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17596991/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com