添加 DATETIME 列的 Alter Table 语法是什么样的?
时,我找不到将 DATETIME 列添加到 mysql 表的语法是什么样的
当我想将默认值设置为 - 示例 - 2011-01-26 14:30:00有谁知道该语法是什么样子
?这是我得到的
ADD COLUMN new_date DATETIME AFTER preceding_col,
谢谢
I can't find what the syntax looks like for adding a DATETIME column to a mysql table when I want to set the default to - example - 2011-01-26 14:30:00
Does anyone know what that syntax looks like?
Here's what I've got
ADD COLUMN new_date DATETIME AFTER preceding_col,
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您有疑问,请参阅此处的语法解释
http://dev.mysql.com/doc/refman/5.5 /en/alter-table.html
或
(我只是更喜欢数字 DATETIME 格式)
If you ever have doubts, the syntax is explained here
http://dev.mysql.com/doc/refman/5.5/en/alter-table.html
or
(I just prefer the numeric DATETIME format)