gpt4 book ai didi

python - sqlalchemy:仅在一列上不同

转载 作者:搜寻专家 更新时间:2023-10-30 21:44:18 24 4
gpt4 key购买 nike

我的表格是这样的:

    title      |    slug
------------------------------
The Title | the-title
Another Title | another-title
another title | another-title

我想通过不同的 slug 进行选择,但也希望标题作为结果的一部分返回。多场比赛返回哪个标题,我不在乎。

所以我的结果是这样的:

[('The Title', 'the-title'), ('Another Title', 'another-title')]

最佳答案

你可能想做这样的事情:

session.query(func.max(Table.title), Table.slug).group_by(Table.slug).all()

关于python - sqlalchemy:仅在一列上不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14105503/

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