有什么类似的东西吗?
我有这个定义
create table xyz (
fecha_alta timestamp NOT NULL DEFAULT localtimestamp,
....
)
我试图在Derby中执行相同的操作,但是它抱怨:
等价的是什么?
最佳答案
Derby的数据类型TIMESTAMP中没有时区,也没有“localtimestamp”。只需使用CURRENT_TIMESTAMP。
http://db.apache.org/derby/docs/10.1/ref/
关于postgresql - JavaDB-Derby中PostgreSQL 'localtimestamp'的等效项是什么?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3443095/