gpt4 book ai didi

MySQL:如果另一个表中的值为 NULL,如何将值插入表中?

转载 作者:行者123 更新时间:2023-11-29 05:06:18 24 4
gpt4 key购买 nike

我有:

INSERT INTO ItemTracking(`Item`, `Source`, `LeftSourceAt`)
SELECT `Item`, `Source`, now() FROM ItemAvailability WHERE Item = 'PA';

我想执行上述查询仅当ItemAvailability 中的ItemBeingTrackedNULL

编辑:If ItemAvailability.ItemBeingTracked == NULL Then 执行上述查询。

最佳答案

我认为您只需将条件添加到WHERE:

INSERT INTO ItemTracking(Item, `Source`, LeftSourceAt)
SELECT Item, `Source`, now()
FROM ItemAvailability
WHERE Item = 'PA' AND ItemBeingTracked IS NULL;

关于MySQL:如果另一个表中的值为 NULL,如何将值插入表中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47401230/

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