在hsqldb中如何做“select current_timestamp”?

前端之家收集整理的这篇文章主要介绍了在hsqldb中如何做“select current_timestamp”?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
甲骨文:
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

猜你在找的MsSQL相关文章