PostgreSQL 的“localtimestamp”等价物是什么?在 JavaDB 中 - 德比?
有类似的东西吗?
我有这个定义,
create table xyz (
fecha_alta timestamp NOT NULL DEFAULT localtimestamp,
....
)
我尝试在德比中执行相同的定义,但它抱怨:
错误:语法错误:在第 3 行第 41 列遇到“localtimestamp”。
等效的是什么?
Is there something simiar?
I have this definition
create table xyz (
fecha_alta timestamp NOT NULL DEFAULT localtimestamp,
....
)
I tried to execute the same in Derby, but it complains with:
Error: Syntax error: Encountered "localtimestamp" at line 3, column 41.
What's the equivalent?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Derby 的数据类型 TIMESTAMP 中没有时区,也没有“本地时间戳”。只需使用 CURRENT_TIMESTAMP。
http://db.apache.org/derby/docs/10.1/ref/< /a>
Derby doesn't have time zones in it's datatype TIMESTAMP and it doesn't have a "localtimestamp" either. Just use CURRENT_TIMESTAMP.
http://db.apache.org/derby/docs/10.1/ref/