| Server IP : 162.241.219.206 / Your IP : 216.73.216.195 Web Server : Apache System : Linux box5669.bluehost.com 5.14.0-687.15.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Jun 11 08:51:45 EDT 2026 x86_64 User : signavd5 ( 2863) PHP Version : 8.3.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/doc/firebird/sql.extensions/ |
Upload File : |
----------------------------------
CURRENT_TIME and CURRENT_TIMESTAMP
----------------------------------
Function:
Returns current server system time or date+time values.
Syntax rules:
CURRENT_TIME [(<seconds precision>)]
CURRENT_TIMESTAMP [(<seconds precision>)]
Type:
TIME, TIMESTAMP
Scope:
DSQL, PSQL
Example(s):
1. SELECT CURRENT_TIME FROM RDB$DATABASE;
2. SELECT CURRENT_TIME(3) FROM RDB$DATABASE;
3. SELECT CURRENT_TIMESTAMP(3) FROM RDB$DATABASE;
Note(s):
1. The maximum possible precision is 3 which means accuracy of 1/1000 second
(one millisecond). This accuracy may be improved in the future versions.
2. If no seconds precision is specified, the following values are implicit:
- 0 for CURRENT_TIME
- 3 for CURRENT_TIMESTAMP