Mysql 更改故障
嘿伙计们,我试图改变我的表格列以采取 创建时的当前时间戳,我收到的错误 是 #1064 - 您的 SQL 语法有错误;检查与您的 MySQL 服务器版本相对应的手册,了解在第 1 行 '( 'inspection_number' NOT NULL default CURRENT_TIMESTAMP )' 附近使用的正确语法
我试图使用
ALTER TABLE `reports` (
`inspection_number` DATE NOT NULL default CURRENT_DATE
);
但我没有看到错误?
Hey guys I was trying to alter my tables column to take
the current time stamp on creation, the error I'm getting
is #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 '( 'inspection_number' NOT NULL default CURRENT_TIMESTAMP )' at line 1
I was trying to use
ALTER TABLE `reports` (
`inspection_number` DATE NOT NULL default CURRENT_DATE
);
But I"m not seeing the error?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
似乎语法不正确。使用以下内容:
如果添加新列
inspection_number
:如果修改现有
inspection_number
列:请指定列的数据类型
Seems syntax is not correct. Use below :
if adding new column
inspection_number
:if modifying existing
inspection_number
column:Please specify datatype of column
您缺少
MODIFY
You're missing a
MODIFY
您所使用的语法适用于创建表时的语法。当您修改表并想要设置默认值时,请使用:
ALTER TABLE table_name MODIFY col_name col_type NOT NULL DEFAULT CURRENT_TIMESTAMP;
The syntax you have there is for when you create a table. When you modify a table and want to set a default value use:
ALTER TABLE table_name MODIFY col_name col_type NOT NULL DEFAULT CURRENT_TIMESTAMP;