CURRENT_TIME()
This page is part of MariaDB's Documentation.
The parent of this page is: Functions for MariaDB Xpand
Topics on this page:
Overview
See CURTIME().
USAGE
CURRENT_TIME([precision])
Argument Name | Description |
---|---|
| The number of desired decimal digits (0-6). Default: 0. |
EXAMPLES
SELECT CURRENT_TIME();
+----------------+
| CURRENT_TIME() |
+----------------+
| 21:05:01 |
+----------------+
SELECT CURRENT_TIME()+0;
+------------------+
| CURRENT_TIME()+0 |
+------------------+
| 210501.0000 |
+------------------+