为什么我不能使用 Current_timestamp 作为 mysql 中的默认值?

发布于 2024-11-24 03:06:17 字数 754 浏览 0 评论 0原文

我使用 phpmyadmin 在本地设置了一个 MySQL 数据库。我想使用远程数据库中的可用表,因此我从 phpmyadmin 导出 SQL 并尝试在其他数据库上运行它。

这就是导出给我的:

CREATE TABLE IF NOT EXISTS `messages` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `Title` varchar(255) NOT NULL,
  `Message` text NOT NULL,
  `MsgType` varchar(10) DEFAULT NULL,
  `Important` int(1) NOT NULL DEFAULT '0',
  `Poster` int(5) DEFAULT NULL,
  `Date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`ID`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=37 ;

但是,现在它抱怨存在解析错误

靠近“CURRENT_TIMESTAMP,PRIMARY KEY (ID)) ENGINE=MyISAM DEFA”。

它在我的本地数据库上工作,为什么不在此处?发生了什么变化以及如何修复它?

编辑:我尝试过使用其他函数如 NOW() 或 CURDATE() 也有同样的问题。

I has a MySQL database set up locally with phpmyadmin. I wanted to use the available tables in a remote database, so I exported the SQL from phpmyadmin and tried to run it on the other DB.

This is what the export gave me:

CREATE TABLE IF NOT EXISTS `messages` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `Title` varchar(255) NOT NULL,
  `Message` text NOT NULL,
  `MsgType` varchar(10) DEFAULT NULL,
  `Important` int(1) NOT NULL DEFAULT '0',
  `Poster` int(5) DEFAULT NULL,
  `Date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`ID`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=37 ;

However, now it complains that there is a parse error

near 'CURRENT_TIMESTAMP, PRIMARY KEY (ID) ) ENGINE=MyISAM DEFA".

It worked on my local db, why not here? What changed and how do I fix it?

EDIT: I've tried using other functions like NOW() or CURDATE() as well, same problem.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甲如呢乙后呢 2024-12-01 03:06:17

来自文档

注意在旧版本的 MySQL(4.1 之前)中,
TIMESTAMP 数据类型在几个方面与 TIMESTAMP 数据类型有很大不同
在本节中进行了描述(请参阅 MySQL 3.23、4.0、4.1 参考
详细手册);这些包括语法扩展,它们是
在 MySQL 5.1 中已弃用,并且在 MySQL 5.5 中不再受支持。这
对执行转储和恢复或复制有影响
MySQL 服务器版本之间。

MySQL 4.0.24 已经非常过时了,此时 - 考虑迁移到以 5 开头的版本。:-)

From the documentation:

Note In older versions of MySQL (prior to 4.1), the properties of the
TIMESTAMP data type differed significantly in several ways from what
is described in this section (see the MySQL 3.23, 4.0, 4.1 Reference
Manual for details); these include syntax extensions which are
deprecated in MySQL 5.1, and no longer supported in MySQL 5.5. This
has implications for performing a dump and restore or replicating
between MySQL Server versions.

MySQL 4.0.24 is incredibly outdated, at this point - consider migrating to a version that starts with a 5. :-)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文