Table of Contents
from_unxitime Syntax description:
format format description:
Example: Count by hour
Home Database Mysql Tutorial Instructions for using the mysql timestamp formatting function from_unixtime

Instructions for using the mysql timestamp formatting function from_unixtime

Jun 09, 2018 am 09:32 AM
mysql function

We generally use the field type int(11) timestamp to save the time, which facilitates query efficiency. But this has a disadvantage. The displayed timestamp makes it difficult to know the real date and time.

mysql provides a timestamp formatting function from_unixtime to convert the format

from_unxitime Syntax description:

from_unixtime(unix_timestamp, format)
Copy after login

Returns a string of Unix time stamps , formatted according to format. If format is empty, the format %Y-%m-%d %H:%i:%s will be used by default

For example:

mysql> select from_unixtime(1459338786);
+---------------------------+| from_unixtime(1459338786) |
+---------------------------+| 2016-03-30 19:53:06       |
+---------------------------+1 row in set (0.00 sec)mysql> select from_unixtime(1459338786, '%Y-%m-%d %H:%i:%s');
+------------------------------------------------+| from_unixtime(1459338786, '%Y-%m-%d %H:%i:%s') |
+------------------------------------------------+| 2016-03-30 19:53:06                            |
+------------------------------------------------+1 row in set (0.00 sec)
Copy after login

format format description:

%M month name (January~December)
%W week name (Sunday~Saturday)
%D date of the month with English prefix (1st, 2nd, 3rd, etc.)
%Y year, number, 4 digits
%y year, number, 2 digits
%a abbreviated name of the week (Sun~Sat)
%d in the month Number of days, number (00~31)
%e Number of days in the month, number (0~31)
%m Month, number (01~12)
%c Month, number (1~12)
%b Abbreviated month name (Jan~Dec)
%j Number of days in a year (001~366)
%H Hours (00~23)
%k Hours (0~23 )
%h hours (01~12)
%I hours (01~12)
%l hours (1~12)
%i minutes, numbers (00~59)
%r time, 12 hours (hh:mm:ss [AP]M)
%T time, 24 hours (hh:mm:ss)
%S seconds (00~59)
%s seconds (00~59)
%p AM or PM
%w The number of days in a week (0=Sunday~6=Saturday)
%U The week (0~52), where Sunday is the first day of the week Day
%u Week (0~52), here Monday is the first day of the week
%% A text%

Example: Count by hour

mysql> select from_unixtime(addtime,'%Y-%m-%d %H') as date,count(*) from `table` group by from_unixtime(addtime,'%Y-%m-%d %H');
+---------------+----------+| date          | count(*) |
+---------------+----------+| 2016-03-30 19 |      409 || 2016-03-30 20 |      161 |
+---------------+----------+2 rows in set (0.00 sec)
Copy after login

This article explains the usage instructions of the MySQL timestamp formatting function from_unixtime. For more related content, please pay attention to the PHP Chinese website.

Related recommendations:

About the usage instructions of mysql functions concat and group_concat

##About mysql innodb failed to start and cannot be restarted Explanation of processing methods

#Explanation of php to obtain relevant content of the specified date

The above is the detailed content of Instructions for using the mysql timestamp formatting function from_unixtime. For more information, please follow other related articles on the PHP Chinese website!

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

Hot Article Tags

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP's big data structure processing skills PHP's big data structure processing skills May 08, 2024 am 10:24 AM

PHP's big data structure processing skills

How to optimize MySQL query performance in PHP? How to optimize MySQL query performance in PHP? Jun 03, 2024 pm 08:11 PM

How to optimize MySQL query performance in PHP?

How to use MySQL backup and restore in PHP? How to use MySQL backup and restore in PHP? Jun 03, 2024 pm 12:19 PM

How to use MySQL backup and restore in PHP?

How to insert data into a MySQL table using PHP? How to insert data into a MySQL table using PHP? Jun 02, 2024 pm 02:26 PM

How to insert data into a MySQL table using PHP?

What are the application scenarios of Java enumeration types in databases? What are the application scenarios of Java enumeration types in databases? May 05, 2024 am 09:06 AM

What are the application scenarios of Java enumeration types in databases?

How to fix mysql_native_password not loaded errors on MySQL 8.4 How to fix mysql_native_password not loaded errors on MySQL 8.4 Dec 09, 2024 am 11:42 AM

How to fix mysql_native_password not loaded errors on MySQL 8.4

How to use MySQL stored procedures in PHP? How to use MySQL stored procedures in PHP? Jun 02, 2024 pm 02:13 PM

How to use MySQL stored procedures in PHP?

Complete collection of excel function formulas Complete collection of excel function formulas May 07, 2024 pm 12:04 PM

Complete collection of excel function formulas

See all articles