小编典典

How to do "select current"_ Timestamp in HSQLDB?

sql

甲骨文:

select systimestamp from dual

MySQL:

select current_timestamp

SQL Server:

select current_timestamp

PostgreSQL:

select current_timestamp

问题是,如何获取HSQLDB中的当前时间戳?我使用版本1.8.0.10


阅读 134

收藏
2021-03-10

共1个答案

小编典典

你可以写

select current_timestamp from tablename

tablename数据库中的真实表在哪里?

查询的结果仅是当前时间戳。

2021-03-10