gpt4 book ai didi

mysql - 使用当前日期更新日期列,其中 NULL

转载 作者:行者123 更新时间:2023-11-29 05:09:13 26 4
gpt4 key购买 nike

我的表中有一列publication_date,格式为DATE(不是TIMESTAMP),一些旧记录有它NULL 所以我想用当前日期更新它。在 PhpMyAdmin 中,我尝试执行此查询:

UPDATE videos SET publication_date = now() WHERE publication_date = NULL

但结果我修改了 0 行。正确的语法是什么?

最佳答案

来自 https://dev.mysql.com/doc/refman/5.7/en/working-with-null.html

You cannot use arithmetic comparison operators such as =, <, or <> to test for NULL.
To test for NULL, use the IS NULL and IS NOT NULL operators

试试这个:

UPDATE videos SET publication_date = now() WHERE publication_date IS NULL

关于mysql - 使用当前日期更新日期列,其中 NULL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42466715/

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