gpt4 book ai didi

python - 如何创建具有不同值但从另一列中选择最大值的新表

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

我正在使用 Python 和 SQLite,我正在尝试将该表复制到另一个表。我有一个名为 InventoryNbr 的列,我还有一个名为 IndexID 的列。其他列此时无关紧要,但我也想复制它们。 InventoryNbr 有多个副本。我只想要不同的库存编号,但我想要 MAX IndexID。我一直在使用它,并获得最低的 IndexID。如何更改它以获得最大 IndexID?

masterCursor.execute('INSERT INTO MasterV2 SELECT InventoryNbr, IndexListID, col1, col2, col3, col4, col5, col6, Extra FROM Master GROUP BY InventoryNbr ORDER BY IndexListID ASC')
编辑:我的 table 看起来像:
InventoryNbrs | IndexListID
12345 | 123
12345 | 124
12345 | 125
12346 | 126
12346 | 127
12347 | 128
我希望我的新表看起来像:
InventoryNbrs | IndexListID
12345 | 125
12346 | 127
12347 | 128

最佳答案

用这个:

INSERT INTO MasterV2 
SELECT InventoryNbr, MAX(IndexListID), col1, col2, col3, col4, col5, col6, Extra
FROM Master
GROUP BY InventoryNbr
上面的 select 语句为每个 InventoryNbr 返回最大的行 IndexListID ,利用 SQLite 的文档功能。
您可以在这里找到更多信息: Simple Select Processing

关于python - 如何创建具有不同值但从另一列中选择最大值的新表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65752078/

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