gpt4 book ai didi

mysql - 如何在 MySQL 中将现有列更改为默认插入时的当前时间?

转载 作者:行者123 更新时间:2023-11-29 01:31:17 24 4
gpt4 key购买 nike

我正在尝试将现有列“time_sent”更改为插入期间的默认时间。我的 SQL 是:

ALTER TABLE `email_history` alter `time_sent` set DEFAULT CURRENT_TIMESTAMP

不过我遇到了这个错误:

 MySQL said: 
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'CURRENT_TIMESTAMP' at line 1

我已阅读文档和其他(相似但不相同)示例,但没有成功。

我相信我的 MySQL 版本是 5.0.67。

最佳答案

应该是..

ALTER TABLE 'table' MODIFY collumn_1 TIMESTAMP DEFAULT CURRENT_TIMESTAMP;

关于mysql - 如何在 MySQL 中将现有列更改为默认插入时的当前时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11605701/

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