gpt4 book ai didi

mysql - 查找并替换 MySql 数据库中的数据

转载 作者:行者123 更新时间:2023-11-30 00:13:35 24 4
gpt4 key购买 nike

我的 MySQL 数据库中有两列,都有数据/时间

我有很多记录,sent_at 列中有实际日期/时间,例如 2012-05-04 16:07:14

但是date_recieved_by_proxy列中的许多记录具有空值,例如00/00/0000 00:00

如何提供 sql 命令来将 date_recieved_by_proxy = 00/00/0000 00:00 记录替换为 sent_at 字段的日期?

最佳答案

update your_table
set date_recieved_by_proxy = sent_at
where date_recieved_by_proxy = '0000-00-00 00:00:00'

或者你可以尝试

where date_recieved_by_proxy is null

取决于 date_recieved_by_proxy 列的数据类型以及它是否可以为 null

关于mysql - 查找并替换 MySql 数据库中的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23847654/

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