gpt4 book ai didi

php - 无法根据此查询获得库存不足的商品

转载 作者:行者123 更新时间:2023-11-29 10:05:40 25 4
gpt4 key购买 nike

这里我有一个表,其中包含 item_quantity 列,其他列为 item_low_stock,我需要获取它们等于低库存或小于低库存的商品。

这是表格:

+-----------------------------+--------------------+--------
| item_id item_quantity item_low_stock
+-----------------------------+-------------------+--------
| 1 | 5 | 5
| 2 | 10 | 9
| 3 | 6 | 10
+-----------------------------+-------------------+-------

这是我的查询:

SELECT item1.item_id as itemId, item1.item_quantity as qty, item1.item_low_stock as lowStock
FROM `eot_item` as item1
INNER JOIN eot_item as item2 ON item1.item_id = item2.item_id
WHERE item1.item_quantity <= item2.item_low_stock
LIMIT 10

最佳答案

尝试以下查询。

由于您已在另一列中定义了最小值,因此无需进行内部联接。

NOTE - Just for the sake of demonstration I am using * (ie select all columns, please get only the respective columns for faster execution)

我希望您在每次数量更改后更新item_quantity

SELECT *
FROM `eot_item`
WHERE item_quantity <= item_low_stock

关于php - 无法根据此查询获得库存不足的商品,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51960253/

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