MySQL LOCALTIME() Function
Clash Royale CLAN TAG#URR8PPP
<!--
main_leaderboard, all: [728,90][970,90][320,50][468,60]-->
MySQL LOCALTIME() Function
❮ MySQL Functions
Example
Return current date and time:
SELECT
LOCALTIME();
Try it Yourself »
Definition and Usage
The LOCALTIME() function returns the current date and time.
Note: The date and time is returned as "YYYY-MM-DD HH-MM-SS"
(string) or as YYYYMMDDHHMMSS.uuuuuu (numeric).
Syntax
LOCALTIME()
Technical Details
Works in: | From MySQL 4.0 |
---|
More Examples
Example
Return current date and time + 1:
SELECT
LOCALTIME() + 1;
Try it Yourself »
❮ MySQL Functions