Comment faire "select current_timestamp" dans hsqldb?

Oracle:

select systimestamp from dual

MySQL:

select current_timestamp

SQL Server:

select current_timestamp

PostgreSQL:

select current_timestamp

La question est, comment puis-je obtenir le timestamp actuel dans HSQLDB? J'utilise la version 1.8.0.10

source d'informationauteur cherouvim