当前位置: 首页 > 面试题库 >

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

温举
2023-03-14
问题内容

甲骨文:

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数据库中的真实表在哪里?

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



 类似资料:

相关阅读

相关文章

相关问答