Tutorial Gateway

  • C
  • C#
  • Java
  • Python
  • SQL
  • MySQL
  • Js
  • BI Tools
    • Informatica
    • Talend
    • Tableau
    • Power BI
    • SSIS
    • SSRS
    • SSAS
    • MDX
    • R Tutorial
    • Alteryx
    • QlikView
  • More
    • C Programs
    • C++ Programs
    • Go Programs
    • Python Programs
    • Java Programs

MySQL LOCALTIME Function

by suresh

MySQL LOCALTIME and localtime() are the MySQL Date Functions, which is useful to return the current date and time in YYYY-MM-DD HH:MM:SS.

In this article, we show you, How to use these Local time functions in MySQL to get local Date and Time with example. The basic syntax of the local date and time in MySQL is as shown below:

LOCALTIME;

LOCALTIME();

MySQL LOCALTIME Example

The following statements show you how to use these MySQL local time functions.

TIP: Both these Date Functions are the synonyms of the NOW() function. All these three MySQL functions return the same output.

SELECT LOCALTIME;

SELECT LOCALTIME();

SELECT NOW();
MySQL LOCALTIME Function 1

As you can see, the above three statements return the local date and time in YYYY-MM-DD HH:MM:SS format. The below statements show you what happens when adding a few seconds to the MySQL localtime() function.

SELECT LOCALTIME() + 2;

SELECT LOCALTIME + 22;

SELECT DATEDIFF(LOCALTIME, '2019-01-22');
MySQL LOCALTIME Function 2

From the above screenshot, you can see that the function added those extra seconds and displaying the date in string format, i.e., YYYYMMDDHHMMSS. Within the last statement, we used the Datediff function to find the difference between the local date and time and custom date ‘2019-01-22.’

Placed Under: MySQL

  • How to Download MySQL
  • Install MySQL on Windows
  • MySQL Create Database
  • MySQL Delete Database
  • MySQL Create Table
  • MySQL Drop Table
  • MySQL SELECT Statement
  • MySQL ALIAS Column
  • MySQL Distinct
  • MySQL Insert Statement
  • MySQL Delete
  • MySQL Truncate Table
  • MySQL WHERE Clause
  • MySQL Order By
  • MySQL Group By
  • MySQL Having Clause
  • MySQL LIMIT
  • MySQL Arithmetic Operators
  • MySQL COALESCE Function
  • MySQL AND Operator
  • MySQL NOT Operator
  • MySQL OR Operator
  • MySQL XOR Operator
  • MySQL BETWEEN Operator
  • MySQL Not Between Operator
  • MySQL GREATEST Function
  • MYSQL LEAST Function
  • MySQL LIKE Operator
  • MySQL NOT LIKE Operator
  • MySQL IFNULL Operator
  • MySQL NULLIF Operator
  • MySQL INTERVAL Operator
  • MySQL IS Operator
  • MySQL IN Operator
  • MySQL NOT IN Operator
  • MySQL IS NOT NULL
  • MySQL IS NULL
  • MySQL Inner Join
  • MySQL Cross Join
  • MySQL Right Join
  • MySQL Left Join
  • MySQL Aggregate Functions
  • MySQL Date Functions
  • MySQL Date Function
  • MySQL String Functions
  • MySQL Numeric Functions

Copyright © 2021 · All Rights Reserved by Suresh

About Us | Contact Us | Privacy Policy