Home > Database > Mysql Tutorial > body text

Detailed explanation of several methods to convert MySQL timestamp into readable time format

PHPz
Release: 2023-04-20 11:12:23
Original
1171 people have browsed it

In MySQL, time is usually stored as a UNIX timestamp, which is the time in seconds since January 1, 1970. However, in actual applications, we sometimes need to convert these timestamps into a more readable format, such as year, month, day, hour, minute, second, etc. This article introduces several methods to convert MySQL timestamps into readable time formats.

  1. Using the FROM_UNIXTIME() function

FROM_UNIXTIME() is a system function in MySQL that is used to convert UNIX timestamps to date and time format. The syntax of this function is as follows:

FROM_UNIXTIME(unix_timestamp[,format])
Copy after login

Among them, unix_timestamp is the UNIX timestamp, and format is an optional parameter used to specify the output time format.

For example, convert the timestamp to the format of year, month and day:

SELECT FROM_UNIXTIME(1562568000,'%Y-%m-%d');
Copy after login

This will output: 2019-07-08.

If you need to convert the timestamp into a more detailed format, you can use the following statement:

SELECT FROM_UNIXTIME(1562568000,'%Y-%m-%d %H:%i:%s');
Copy after login

This will output: 2019-07-08 08:00:00.

  1. Using the DATE_FORMAT() function

DATE_FORMAT() is another system function in MySQL that is used to convert the date and time format to a specified format. The syntax of this function is as follows:

DATE_FORMAT(date,format)
Copy after login

Among them, date is the date and time type data, and format is the converted format.

For example, convert the timestamp to the format of year, month and day:

SELECT DATE_FORMAT(FROM_UNIXTIME(1562568000),'%Y-%m-%d');
Copy after login

This will output: 2019-07-08.

If you need to convert the timestamp into a more detailed format, you can use the following statement:

SELECT DATE_FORMAT(FROM_UNIXTIME(1562568000),'%Y-%m-%d %H:%i:%s');
Copy after login

This will output: 2019-07-08 08:00:00.

  1. Using the TIMESTAMP() function

The TIMESTAMP() function is a system function in MySQL that is used to convert date and time type data into UNIX timestamps. The syntax of this function is as follows:

TIMESTAMP(date)
Copy after login

Among them, date is date and time type data.

For example, convert date time to timestamp format:

SELECT UNIX_TIMESTAMP('2019-07-08 08:00:00');
Copy after login
Copy after login

This will output: 1562568000.

  1. Using the UNIX_TIMESTAMP() function

The UNIX_TIMESTAMP() function is a system function in MySQL, used to convert date and time type data into UNIX timestamps. The syntax of this function is as follows:

UNIX_TIMESTAMP(date)
Copy after login

Among them, date is date and time type data.

For example, convert date time to timestamp format:

SELECT UNIX_TIMESTAMP('2019-07-08 08:00:00');
Copy after login
Copy after login

This will output: 1562568000.

Summary

In MySQL, converting timestamps into readable time formats is a very common need. This article introduces several commonly used methods, including using the FROM_UNIXTIME() function, DATE_FORMAT() function, TIMESTAMP() function and UNIX_TIMESTAMP() function. Depending on the specific needs, choosing different methods can more conveniently achieve time format conversion.

The above is the detailed content of Detailed explanation of several methods to convert MySQL timestamp into readable time format. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!