甲骨文:
select systimestamp from dual
MysqL的:
select current_timestamp
sql Server:
select current_timestamp
Postgresql的:
select current_timestamp
问题是,如何获得HSQLDB的当前时间戳?我使用1.8.0.10版本
你可以写
select current_timestamp from tablename
其中tablename是数据库中的一个真实表.
查询的结果只是当前的时间戳.
原文链接:https://www.f2er.com/mssql/82013.html