java derby 的 mysql current_timestamp
在 MySQL 中,我可以轻松地将时间戳字段的默认值设置为当前时间
fieldname timestamp not null default current_timestamp
有谁知道如何在 java derby 中做同样的事情?
In MySQL I can easily set the default value of a timestamp field to be the current time
fieldname timestamp not null default current_timestamp
Does anyone know how to do the same thing in java derby?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该有效
fieldname TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
This should work
fieldname TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP