Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 MySQL 中,我可以轻松地将时间戳字段的默认值设置为当前时间
fieldname timestamp not null default current_timestamp
有谁知道如何在 java derby 中做同样的事情?
这应该工作fieldname TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
fieldname TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP