gpt4 book ai didi

sql - SQL-获取其中一列比另一列大一定百分比的行

转载 作者:行者123 更新时间:2023-12-04 14:21:15 25 4
gpt4 key购买 nike

我需要获得其中一列比另一列大一定百分比的行。

假设我有2栏:


InventoryLevel int
InventoryAlert int


我需要获取InventoryLevelInventoryAlert大25%的所有行。

可以一次完成所有查询吗?任何帮助将不胜感激!

最佳答案

SELECT InventoryLevel,
InventoryAlert
FROM YourTable
WHERE InventoryLevel > 1.25 * InventoryAlert
/*Incorrect for stated question but meets clarification in comment
"InventoryLevel is any value greater than 25%, doesn't have to be exact. "*/

关于sql - SQL-获取其中一列比另一列大一定百分比的行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7404047/

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